2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 11:49:56 +00:00
|
|
|
require "cmd/shared_examples/args_parse"
|
|
|
|
|
|
|
|
describe "Homebrew.ruby_args" do
|
|
|
|
it_behaves_like "parseable arguments"
|
|
|
|
end
|
|
|
|
|
2019-11-06 15:36:28 +00:00
|
|
|
describe "brew ruby", :integration_test do
|
2018-02-28 09:31:29 -08:00
|
|
|
it "executes ruby code with Homebrew's libraries loaded" do
|
|
|
|
expect { brew "ruby", "-e", "exit 0" }
|
|
|
|
.to be_a_success
|
|
|
|
.and not_to_output.to_stdout
|
|
|
|
.and not_to_output.to_stderr
|
|
|
|
end
|
|
|
|
end
|
2020-11-30 23:30:52 -08:00
|
|
|
|
2020-12-04 09:10:58 -08:00
|
|
|
# Doesn't actually need Linux but only running there as integration tests are slow.
|
2020-12-03 22:27:02 -08:00
|
|
|
describe "brew ruby -e 'puts \"testball\".f.path'", :integration_test, :needs_linux do
|
2020-11-30 23:30:52 -08:00
|
|
|
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
|