summaryrefslogtreecommitdiff
path: root/test/slop_test.rb
blob: 2610ebd29ac7b708aa61a9fdd26a1f7fbd6d1c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "test_helper"

describe Slop do
  describe ".option_defined?" do
    it "handles bad constant names" do
      assert_equal false, Slop.option_defined?("Foo?Bar")
    end

    it "returns false if the option is not defined" do
      assert_equal false, Slop.option_defined?("FooBar")
    end

    it "returns true if the option is defined" do
      assert_equal true, Slop.option_defined?("String")
    end
  end
end