aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/support/fixtures/testbottest.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/support/fixtures/testbottest.rb')
-rw-r--r--Library/Homebrew/test/support/fixtures/testbottest.rb14
1 files changed, 0 insertions, 14 deletions
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