class Object
Public Instance Methods
have_class_action(action_name)
click to toggle source
# File lib/class_action/rspec/have_class_action_matcher.rb, line 64 def have_class_action(action_name) ClassAction::RSpec::HaveClassActionMatcher.new(action_name) end
respond_to_any_format()
click to toggle source
# File lib/class_action/rspec/respond_to_format_matcher.rb, line 69 def respond_to_any_format ClassAction::RSpec::RespondToFormatMatcher.new(:any) end
respond_to_format(format)
click to toggle source
# File lib/class_action/rspec/respond_to_format_matcher.rb, line 66 def respond_to_format(format) ClassAction::RSpec::RespondToFormatMatcher.new(format) end
respond_with(expected)
click to toggle source
# File lib/class_action/rspec/respond_with_matcher.rb, line 57 def respond_with(expected) ClassAction::RSpec::RespondWithMatcher.new(expected) end