Skip to content
Snippets Groups Projects
Unverified Commit 7e3e86eb authored by Steve Peters's avatar Steve Peters Committed by GitHub
Browse files

Merge pull request #9370 from scpeters/ruby-e_testball_f_path_test

Test for `brew ruby -e 'puts "testball".f.path'`
parents 20ee5661 f4e42191
No related branches found
No related tags found
No related merge requests found
......@@ -15,3 +15,18 @@ describe "brew ruby", :integration_test do
.and not_to_output.to_stderr
end
end
# Doesn't actually need Linux but only running there as integration tests are slow.
describe "brew ruby -e 'puts \"testball\".f.path'", :integration_test, :needs_linux do
let!(:target) do
target_path = setup_test_formula "testball"
{ path: target_path }
end
it "prints the path of a test formula" do
expect { brew "ruby", "-e", "puts 'testball'.f.path" }
.to be_a_success
.and output(/^#{target[:path]}$/).to_stdout
.and not_to_output.to_stderr
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