aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-05-30 10:30:14 +0100
committerGitHub2017-05-30 10:30:14 +0100
commitd1f802c372563e36fe656c4662cae9e5b4138cdd (patch)
tree6a38abcc3874988a2d16174d62c2ddc0a10497db /Library
parent2f97b0ae5507ec90e89077eaf1ee7b4426690067 (diff)
parent28cd0d385606f53609a5464fcb7e176f02a79cd6 (diff)
downloadbrew-d1f802c372563e36fe656c4662cae9e5b4138cdd.tar.bz2
Merge pull request #2686 from MikeMcQuaid/remove-testbottest
Fix Linux build
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/support/fixtures/tarballs/testbottest-0.1.tbzbin548 -> 0 bytes
-rw-r--r--Library/Homebrew/test/support/fixtures/testbottest.rb14
2 files changed, 0 insertions, 14 deletions
diff --git a/Library/Homebrew/test/support/fixtures/tarballs/testbottest-0.1.tbz b/Library/Homebrew/test/support/fixtures/tarballs/testbottest-0.1.tbz
deleted file mode 100644
index 83f7ab1dd..000000000
--- a/Library/Homebrew/test/support/fixtures/tarballs/testbottest-0.1.tbz
+++ /dev/null
Binary files differ
diff --git a/Library/Homebrew/test/support/fixtures/testbottest.rb b/Library/Homebrew/test/support/fixtures/testbottest.rb
deleted file mode 100644
index f7695cab5..000000000
--- a/Library/Homebrew/test/support/fixtures/testbottest.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class Testbottest < Formula
- desc "Minimal C program and Makefile used for testing Homebrew."
- homepage "https://github.com/Homebrew/brew"
- url "file://#{File.expand_path("..", __FILE__)}/tarballs/testbottest-0.1.tbz"
- sha256 "78b54d8f31585c9773bed12b4aa4ab2ce458ebd044b9406cb24d40aa5107f082"
-
- def install
- system "make", "install", "PREFIX=#{prefix}"
- end
-
- test do
- assert_equal "testbottest\n", shell_output("#{bin}/testbottest")
- end
-end