mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
18 lines
487 B
Ruby
18 lines
487 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.shared_examples "parseable arguments" do
|
|
subject(:method_name) { "#{command_name.tr("-", "_")}_args" }
|
|
|
|
let(:command_name) do |example|
|
|
example.metadata[:example_group][:parent_example_group][:description].delete_prefix("brew ")
|
|
end
|
|
|
|
it "can parse arguments" do
|
|
require "dev-cmd/#{command_name}" unless require? "cmd/#{command_name}"
|
|
|
|
parser = Homebrew.public_send(method_name)
|
|
|
|
expect(parser).to respond_to(:parse)
|
|
end
|
|
end
|