Tagged Questions
The rpsec tag has no wiki summary.
6
votes
4answers
3k views
Stubbing Chained Methods with Rspec
I want to call a named_scope that will only return one record, but the named_scope returns an array, that's not a big deal as I can just chain it with .first:
Model.named_scope(param).first
and ...
2
votes
1answer
135 views
rspec expectations
Does anybody know how you can rspec an active support notification? The following doesn't seem to work. It detects the default rails framework notifications but not my custom one.
it 'sends a ...
2
votes
3answers
1k views
Testing an Rspec Controller with assocations
I've got two models:
class Solution < ActiveRecord::Base
belongs_to :user
validates_attachment_presence :software
validates_presence_of :price, :language, :title
validates_uniqueness_of ...
1
vote
1answer
40 views
How to put a value in flash when testing an action
I'm trying to test an action that needs a value stored in flash.
def my_action
if flash[:something].nil?
redirect_to root_path if flash[:something]
return
end
# Do some other stuff
end
...
1
vote
2answers
160 views
How to access Clearance Shoulda macros in RSpec
I can't work out how to get access to the shoulda macros (sign_in_as, etc) in my RSpec tests. I've installed and unpacked the shoulda gem into vendor and I've run the generator to install clearance. ...
0
votes
0answers
12 views
Issue with Failures in Chapter 7 of Hartl Tutorial
When I run bundle exec rspec spec/ I'm getting 21 examples and 3 failures. Those failures being:
Failures:
1) User has_password? method should be true if the passwords match
Failure/Error: ...
0
votes
1answer
25 views
Generate all RSpec spec files from existing controllers, models & views in a Rails app
Does anyone know of a rake task or RSpec call that will generate a bunch of empty files relative to the existing controllers, models, helper files and views that already exist within your application?
...
0
votes
0answers
33 views
How to have JunitFormatter output for Rspec run using Rake?
I have no problem running the rspec file using :
rspec -f JUnitFormatter -o junit.xml spec_test.rb
However each time I try rake to execute spec file, I get the following error
...
0
votes
1answer
260 views
How to use ensure_inclusion_of for an arbitrary list
In my rails project I have a model with attribute foo. I have a vaildation which ensures that any value for foo is in an array. This uses a validation with the :in option.
I want to test this using ...
0
votes
1answer
81 views
Translating Rspec tests to Shoulda
I have a pre-written Rails app for handling subscription based payments that is currently covered with an Rspec test suite. I'm trying to merge it into a Rails app that is covered using the Shoulda ...
0
votes
2answers
85 views
Using “should” with class methods?
I'm used to making calls such as:
new_count.should eql(10)
on variables, but how can I do something similar with a class method such as File.directory?(my_path)?
Every combination of File.should ...