aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/magefile/mage/build/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/magefile/mage/build/testdata')
-rw-r--r--vendor/github.com/magefile/mage/build/testdata/empty/dummy0
-rw-r--r--vendor/github.com/magefile/mage/build/testdata/multi/file.go5
-rw-r--r--vendor/github.com/magefile/mage/build/testdata/multi/file_appengine.go5
-rw-r--r--vendor/github.com/magefile/mage/build/testdata/other/file/file.go5
-rw-r--r--vendor/github.com/magefile/mage/build/testdata/other/main.go11
5 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/magefile/mage/build/testdata/empty/dummy b/vendor/github.com/magefile/mage/build/testdata/empty/dummy
deleted file mode 100644
index e69de29..0000000
--- a/vendor/github.com/magefile/mage/build/testdata/empty/dummy
+++ /dev/null
diff --git a/vendor/github.com/magefile/mage/build/testdata/multi/file.go b/vendor/github.com/magefile/mage/build/testdata/multi/file.go
deleted file mode 100644
index ee946eb..0000000
--- a/vendor/github.com/magefile/mage/build/testdata/multi/file.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Test data - not compiled.
-
-package main
-
-func main() {}
diff --git a/vendor/github.com/magefile/mage/build/testdata/multi/file_appengine.go b/vendor/github.com/magefile/mage/build/testdata/multi/file_appengine.go
deleted file mode 100644
index 4ea31e7..0000000
--- a/vendor/github.com/magefile/mage/build/testdata/multi/file_appengine.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Test data - not compiled.
-
-package test_package
-
-func init() {}
diff --git a/vendor/github.com/magefile/mage/build/testdata/other/file/file.go b/vendor/github.com/magefile/mage/build/testdata/other/file/file.go
deleted file mode 100644
index bbfd3e9..0000000
--- a/vendor/github.com/magefile/mage/build/testdata/other/file/file.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Test data - not compiled.
-
-package file
-
-func F() {}
diff --git a/vendor/github.com/magefile/mage/build/testdata/other/main.go b/vendor/github.com/magefile/mage/build/testdata/other/main.go
deleted file mode 100644
index e090435..0000000
--- a/vendor/github.com/magefile/mage/build/testdata/other/main.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Test data - not compiled.
-
-package main
-
-import (
- "./file"
-)
-
-func main() {
- file.F()
-}