mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
82440a039f
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
23 lines
591 B
Go
23 lines
591 B
Go
package system
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/integration/util/request"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func TestVersion(t *testing.T) {
|
|
client := request.NewAPIClient(t)
|
|
|
|
version, err := client.ServerVersion(context.Background())
|
|
require.NoError(t, err)
|
|
|
|
assert.NotNil(t, version.APIVersion)
|
|
assert.NotNil(t, version.Version)
|
|
assert.NotNil(t, version.MinAPIVersion)
|
|
assert.Equal(t, testEnv.DaemonInfo.ExperimentalBuild, version.Experimental)
|
|
assert.Equal(t, testEnv.OSType, version.Os)
|
|
}
|