terraform/config/module/detect_test.go

28 lines
490 B
Go
Raw Normal View History

package module
import (
"testing"
)
func TestDetect(t *testing.T) {
cases := []struct {
Input string
Pwd string
Output string
Err bool
}{
{"./foo", "/foo", "file:///foo/foo", false},
{"git::./foo", "/foo", "git::file:///foo/foo", false},
}
for i, tc := range cases {
output, err := Detect(tc.Input, tc.Pwd)
if (err != nil) != tc.Err {
t.Fatalf("%d: bad err: %s", i, err)
}
if output != tc.Output {
t.Fatalf("%d: bad output: %s", i, output)
}
}
}