2023-05-23 13:20:48 +00:00
|
|
|
package ubuntu
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
|
|
|
"code.dumpstack.io/tools/out-of-tree/distro"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestUbuntu(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
2023-05-23 16:54:34 +00:00
|
|
|
u := Ubuntu{release: "22.04"}
|
2023-05-23 13:20:48 +00:00
|
|
|
|
|
|
|
assert.True(u.Equal(distro.Distro{Release: "22.04", ID: distro.Ubuntu}))
|
|
|
|
|
|
|
|
assert.NotEmpty(u.Packages())
|
|
|
|
}
|