diff options
Diffstat (limited to 'spec/ruby/library/getoptlong/get_option_spec.rb')
| -rw-r--r-- | spec/ruby/library/getoptlong/get_option_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/ruby/library/getoptlong/get_option_spec.rb b/spec/ruby/library/getoptlong/get_option_spec.rb new file mode 100644 index 0000000000..1d80e3622e --- /dev/null +++ b/spec/ruby/library/getoptlong/get_option_spec.rb @@ -0,0 +1,8 @@ +require_relative '../../spec_helper' +require 'getoptlong' + +describe "GetoptLong#get_option" do + it "is an alias of GetoptLong#get" do + GetoptLong.instance_method(:get_option).should == GetoptLong.instance_method(:get) + end +end |
