mirror of
https://github.com/docker/compose.git
synced 2025-10-29 18:23:48 +01:00
14 lines
209 B
Go
14 lines
209 B
Go
package store
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDefaultContext(t *testing.T) {
|
|
s, err := dockerDefaultContext()
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, "default", s.Name)
|
|
}
|