aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/magefile/mage/build/testdata
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2018-07-01 20:38:18 +0000
committerChristine Dodrill <me@christine.website>2018-07-01 20:38:18 +0000
commit6197f455f695eb959a932e15dc417c1b50a2255b (patch)
treeeb90c08ea8e688894b033668587635c6e350f13d /vendor/github.com/magefile/mage/build/testdata
parentb0e0b108231f9b71eebe68d8e9b99ca2846b4534 (diff)
downloadxesite-6197f455f695eb959a932e15dc417c1b50a2255b.tar.xz
xesite-6197f455f695eb959a932e15dc417c1b50a2255b.zip
vgo
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()
-}