33 lines
540 B
Go
33 lines
540 B
Go
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)
|
|
}
|
|
}
|