Class: Merb::Test::Rspec::ControllerMatchers::Provide

Inherits:
Object
  • Object
show all
Defined in:
lib/merb-core/test/matchers/controller_matchers.rb

Instance Method Summary collapse

Constructor Details

#initialize(expected) ⇒ Provide

Parameters

expected<Symbol>

A format to check



63
64
65
# File 'lib/merb-core/test/matchers/controller_matchers.rb', line 63

def initialize(expected)
  @expected = expected
end

Instance Method Details

#failure_messageObject

Returns

String

The failure message.



80
81
82
# File 'lib/merb-core/test/matchers/controller_matchers.rb', line 80

def failure_message
  "expected #{@target.name} to provide #{@expected}, but it doesn't"
end

#matches?(target) ⇒ Boolean

Parameters

target<Symbol>

A ControllerClass or controller_instance

Returns

Boolean

True if the formats provided by the target controller/class include the expected

Returns:

  • (Boolean)


73
74
75
76
# File 'lib/merb-core/test/matchers/controller_matchers.rb', line 73

def matches?(target)
  @target = target
  provided_formats.include?( @expected )
end

#negative_failure_messageObject

Returns

String

The failure message to be displayed in negative matches.



86
87
88
# File 'lib/merb-core/test/matchers/controller_matchers.rb', line 86

def negative_failure_message
  "expected #{@target.name} not to provide #{@expected}, but it does"
end

#provided_formatsObject

Returns

Array

The formats the expected provides



92
93
94
# File 'lib/merb-core/test/matchers/controller_matchers.rb', line 92

def provided_formats
  @target.class_provided_formats
end