Module: RSpec::Rails::Matchers
- Included in:
- RailsExampleGroup
- Defined in:
- lib/rspec/rails/matchers.rb,
lib/rspec/rails/matchers/be_a_new.rb,
lib/rspec/rails/matchers/be_valid.rb,
lib/rspec/rails/matchers/redirect_to.rb,
lib/rspec/rails/matchers/be_new_record.rb,
lib/rspec/rails/matchers/have_rendered.rb,
lib/rspec/rails/matchers/have_extension.rb,
lib/rspec/rails/matchers/routing_matchers.rb
Defined Under Namespace
Modules: HaveExtensions, RedirectTo, RenderTemplate, RoutingMatchers Classes: BeANew, BeANewRecord, BeValid
Instance Method Summary collapse
-
#be_a_new(model_class) ⇒ Object
Passes if actual is an instance of
model_class
and returnsfalse
forpersisted?
. -
#be_new_record ⇒ Object
Passes if actual returns
false
forpersisted?
. -
#be_valid(*args) ⇒ Object
Passes if the given model instance's
valid?
method is true, meaning all of theActiveModel::Validations
passed and no errors exist.
Instance Method Details
#be_a_new(model_class) ⇒ Object
Passes if actual is an instance of model_class
and returns false
for
persisted?
. Typically used to specify instance variables assigned to
views by controller actions
73 74 75 |
# File 'lib/rspec/rails/matchers/be_a_new.rb', line 73 def be_a_new(model_class) BeANew.new(model_class) end |
#be_new_record ⇒ Object
Passes if actual returns false
for persisted?
.
24 25 26 |
# File 'lib/rspec/rails/matchers/be_new_record.rb', line 24 def be_new_record BeANewRecord.new end |
#be_valid(*args) ⇒ Object
Passes if the given model instance's valid?
method is true, meaning all
of the ActiveModel::Validations
passed and no errors exist. If a message
is not given, a default message is shown listing each error.
37 38 39 |
# File 'lib/rspec/rails/matchers/be_valid.rb', line 37 def be_valid(*args) BeValid.new(*args) end |