Sha256: e95caf93c6b71cc3d79ac6f903e943e02d4dc2a3018c484bace9ed37c9161c8c
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
require "spec_helper" RSpec.describe <%= configuration.project_class %>::CLI::Parsers::Core do subject(:parser) { described_class.new configuration.dup } include_context "with application container" it_behaves_like "a parser" describe "#call" do it "answers config edit (short)" do expect(parser.call(%w[-c edit])).to have_attributes(action_config: :edit) end it "answers config edit (long)" do expect(parser.call(%w[--config edit])).to have_attributes(action_config: :edit) end it "answers config view (short)" do expect(parser.call(%w[-c view])).to have_attributes(action_config: :view) end it "answers config view (long)" do expect(parser.call(%w[--config view])).to have_attributes(action_config: :view) end it "fails with missing config action" do expectation = proc { parser.call %w[--config] } expect(&expectation).to raise_error(OptionParser::MissingArgument, /--config/) end it "fails with invalid config action" do expectation = proc { parser.call %w[--config bogus] } expect(&expectation).to raise_error(OptionParser::InvalidArgument, /bogus/) end it "answers version (short)" do expect(parser.call(%w[-v])).to have_attributes(action_version: true) end it "answers version (long)" do expect(parser.call(%w[--version])).to have_attributes(action_version: true) end it "enables help (short)" do expect(parser.call(%w[-h])).to have_attributes(action_help: true) end it "enables help (long)" do expect(parser.call(%w[--help])).to have_attributes(action_help: true) end end end
Version data entries
3 entries across 3 versions & 1 rubygems