2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 11:49:56 +00:00
|
|
|
shared_examples "parseable arguments" do
|
|
|
|
subject(:method_name) do |example|
|
|
|
|
example.metadata[:example_group][:parent_example_group][:description]
|
|
|
|
.gsub(/^Homebrew\./, "")
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:command_name) do
|
|
|
|
method_name.gsub(/_args$/, "").tr("_", "-")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can parse arguments" do
|
|
|
|
require "dev-cmd/#{command_name}" unless require? "cmd/#{command_name}"
|
|
|
|
|
2020-03-04 17:27:25 +00:00
|
|
|
expect { Homebrew.send(method_name).parse({}, allow_no_named_args: true) }
|
2019-03-27 11:49:56 +00:00
|
|
|
.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|