require_relative '../../spec_helper' require 'getoptlong' describe "GetoptLong#error_message" do it "returns nil if no error occurred" do opts = GetoptLong.new opts.error_message.should == nil end it "returns the error message of the last error that occurred" do argv [] do opts = GetoptLong.new opts.quiet = true opts.get -> { opts.ordering = GetoptLong::PERMUTE }.should raise_error(ArgumentError) { |e| e.message.should == "argument error" opts.error_message.should == "argument error" } end end end 939996807'/> The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/lib/yaml.rb
AgeCommit message (Expand)Author
2009-03-06* {ext,lib,test}/**/*.rb: removed trailing spaces.nobu
2008-09-23Fix ruby -w warnings for mismatched indentation discovered by rdocdrbrain