Class: Spec::Matchers::ThrowSymbol
- Defined in:
- lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb
Overview
:nodoc:
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
-
#initialize(expected_symbol = nil, expected_arg = nil) ⇒ ThrowSymbol
constructor
A new instance of ThrowSymbol.
- #matches?(given_proc) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(expected_symbol = nil, expected_arg = nil) ⇒ ThrowSymbol
Returns a new instance of ThrowSymbol.
5 6 7 8 9 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb', line 5 def initialize(expected_symbol = nil, expected_arg=nil) @expected_symbol = expected_symbol @expected_arg = expected_arg @caught_symbol = nil end |
Instance Method Details
#description ⇒ Object
62 63 64 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb', line 62 def description "throw #{expected}" end |
#failure_message ⇒ Object
46 47 48 49 50 51 52 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb', line 46 def if @caught_symbol "expected #{expected}, got #{@caught_symbol.inspect}" else "expected #{expected} but nothing was thrown" end end |
#matches?(given_proc) ⇒ Boolean
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb', line 11 def matches?(given_proc) begin if @expected_symbol.nil? given_proc.call else @caught_arg = catch :proc_did_not_throw_anything do catch @expected_symbol do given_proc.call throw :proc_did_not_throw_anything, :nothing_thrown end end @caught_symbol = @expected_symbol unless @caught_arg == :nothing_thrown end # Ruby 1.8 uses NameError with `symbol' # Ruby 1.9 uses ArgumentError with :symbol rescue NameError, ArgumentError => e raise e unless e. =~ /uncaught throw (`|\:)([a-zA-Z0-9_]*)(')?/ @caught_symbol = $2.to_sym ensure if @expected_symbol.nil? return !@caught_symbol.nil? else if @expected_arg.nil? return @caught_symbol == @expected_symbol else # puts [@caught_symbol, @expected_symbol].inspect # puts [@caught_arg, @expected_arg].inspect return @caught_symbol == @expected_symbol && @caught_arg == @expected_arg end end end end |
#negative_failure_message ⇒ Object
54 55 56 57 58 59 60 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/throw_symbol.rb', line 54 def if @expected_symbol "expected #{expected} not to be thrown" else "expected no Symbol, got :#{@caught_symbol}" end end |