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
|