OSDN Git Service

Thanos did someting
[bytom/vapor.git] / vendor / github.com / hashicorp / hcl / hcl_test.go
diff --git a/vendor/github.com/hashicorp/hcl/hcl_test.go b/vendor/github.com/hashicorp/hcl/hcl_test.go
deleted file mode 100644 (file)
index 31dff7c..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package hcl
-
-import (
-       "io/ioutil"
-       "path/filepath"
-       "testing"
-)
-
-// This is the directory where our test fixtures are.
-const fixtureDir = "./test-fixtures"
-
-func testReadFile(t *testing.T, n string) string {
-       d, err := ioutil.ReadFile(filepath.Join(fixtureDir, n))
-       if err != nil {
-               t.Fatalf("err: %s", err)
-       }
-
-       return string(d)
-}