config/module: Get tests
This commit is contained in:
parent
c2fe35e74e
commit
fa997525c2
|
@ -0,0 +1,32 @@
|
||||||
|
package module
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGet_badSchema(t *testing.T) {
|
||||||
|
dst := tempDir(t)
|
||||||
|
u := testModule("basic")
|
||||||
|
u = strings.Replace(u, "file", "nope", -1)
|
||||||
|
|
||||||
|
if err := Get(dst, u); err == nil {
|
||||||
|
t.Fatal("should error")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGet_file(t *testing.T) {
|
||||||
|
dst := tempDir(t)
|
||||||
|
u := testModule("basic")
|
||||||
|
|
||||||
|
if err := Get(dst, u); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
mainPath := filepath.Join(dst, "main.tf")
|
||||||
|
if _, err := os.Stat(mainPath); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue