mirror of https://github.com/docker/compose.git
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 := dockerGefaultContext()
|
||
|
assert.Nil(t, err)
|
||
|
assert.Equal(t, "default", s.Name)
|
||
|
}
|