Skip to content
Snippets Groups Projects
Commit 201f3abe authored by Markus Reiter's avatar Markus Reiter
Browse files

Convert `brew --prefix` test to spec.

parent 0c0a7703
No related branches found
No related tags found
No related merge requests found
describe "brew --prefix", :integration_test do
it "prints the Homebrew prefix when no argument is given" do
expect { brew "--prefix" }
.to output("#{HOMEBREW_PREFIX}\n").to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
it "prints a given Formula's prefix" do
expect { brew "--prefix", testball }
.to output(%r{#{HOMEBREW_CELLAR}/testball}).to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
end
require "testing_env"
class IntegrationCommandTestPrefixFormula < IntegrationCommandTestCase
def test_prefix_formula
assert_match "#{HOMEBREW_CELLAR}/testball",
cmd("--prefix", testball)
end
end
require "testing_env"
class IntegrationCommandTestPrefix < IntegrationCommandTestCase
def test_prefix
assert_equal HOMEBREW_PREFIX.to_s,
cmd("--prefix")
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment