Sha256: 3f62c3c28831506ec23bbbc6fda975ce589291c0e16fea701db435e25ffd7a44

Contents?: true

Size: 969 Bytes

Versions: 9

Compression:

Stored size: 969 Bytes

Contents

require 'test_helper'

describe Slop::Option do
  def option(*args, **kwargs, &block)
    Slop::Option.new(*args, **kwargs, &block)
  end

  describe "#flag" do
    it "returns the flags joined by a comma" do
      assert_equal "-f, --bar", option(%w(-f --bar), nil).flag
      assert_equal "--bar", option(%w(--bar), nil).flag
    end
  end

  describe "#key" do
    it "uses the last flag and strips trailing hyphens" do
      assert_equal :foo, option(%w(-f --foo), nil).key
    end

    it "converts dashes to underscores to make multi-word options symbol-friendly" do
      assert_equal :foo_bar, option(%w(-f --foo-bar), nil).key
    end

    it "when specified, it won't convert dashes to underscores to make multi-word options symbol-friendly" do
      assert_equal :'foo-bar', option(%w(-f --foo-bar), nil, underscore_flags: false).key
    end

    it "can be overridden" do
      assert_equal :bar, option(%w(-f --foo), nil, key: "bar").key
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
slop-4.10.1 test/option_test.rb
slop-4.10.0 test/option_test.rb
slop-4.9.3 test/option_test.rb
slop-4.9.2 test/option_test.rb
slop-4.9.1 test/option_test.rb
slop-4.9.0 test/option_test.rb
slop-4.8.2 test/option_test.rb
slop-4.8.1 test/option_test.rb
slop-4.8.0 test/option_test.rb