0
votes
1answer
19 views
Cucumber/RSpec testing of improbable errors
I've got a problem testing the following controller code:
def publish
if @article.publish
flash[:notice] = "Article '#{@article.title}' was published."
else
# This is not tested
…
0
votes
1answer
14 views
Does spec tests migrate dbs on every test?
I did rake test:prepare and clone the db. Then when I do spec spec/controllers/file, it migrates the db every single time.
Is that supposed to do that? I thought it was only supposed to migrate the …
0
votes
1answer
23 views
RSpec can’t find Cucumber gem
When running rspec I get the following error:
no such file to load -- cucumber-rails
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
…
3
votes
2answers
42 views
Rspec: Is there a problem with rspec-rails when initializing a controller class with super(args)?
Hi there,
I've been using Rspec for a while and for some reason am receiving errors on a controller called ReferencesController.
The error says that I have to specify the controller name by either …
0
votes
2answers
49 views
Why would using File.open call once result in it being called 3 times according to rspec
Below you can see that I'm calling File.open only once but rspec is telling me it received it 3 times.
def self.import_file(filename)
current_file = filename.split('/').last
…
0
votes
1answer
28 views
Structuring RSpec file structure and code for tests with very large coverage?
I've just started looking at a project that has >20k unit tests written in Rspec (the project itself isn't written in Ruby; just the test cases). The current number of test cases is expected to grow …
3
votes
3answers
82 views
Cuke4Nuke or SpecFlow?
I am trying to decide if I should use Cuke4Nuke or SpecFlow.
What are the pro/cons of each? Opinions on which is better and why.
Thanks!
1
vote
1answer
38 views
Mocking ActiveRecord relationship beheavior in RSpec tests
I've run into this problem with testing. Let's assume I have two models, User and Post, where user has_many :posts.
I'm trying to spec out a code block that includes something like this:
user = …
0
votes
1answer
27 views
Ruby on Rails Rspec migrates database when running rake spec:plugins
I'm trying to test a plugin that i wrote by running:
rake spec:plugins
When i execute this command it appears that it drops my database tables (in my test DB) and then runs a migration without any …
0
votes
1answer
14 views
rspec testing a controller post changing my params from symbols to strings and breaking my tests
In my controller spec I am doing this:
it "should create new message" do
Client.should_receive(:create).with({:title => 'Mr'})
post 'create' , :client => {:title => "Mr" }
end
... and …
1
vote
1answer
63 views
Facing problem with running configuring environment for cucumber / rspec on ubuntu
I'm trying a basic RSpec / Cucumber tutorial given here
However, when I run the command "script/cucumber features", I get the following error and am not able to proceed further.
Using the default …
0
votes
2answers
47 views
Rails: When testing controllers with RSpec, how do I stop them from redirecting?
I have controller methods that look like this:
class TestController < ApplicationController
def testAction
render :json => { 'success'=>1 }.to_json
end
end
When I load this action …
0
votes
2answers
51 views
rails image_submit_tag with cucumber/webrat
I've the following search form with image_submit_tag instead of submit_tag.
Now I get the obvious fail when cucumber runs:
When I fill in "q" with "sachin" …
1
vote
1answer
47 views
How rspec works with rails3 for integration-tests?
What I'm trying to ahieve is to do integration tests with webrat in rails3 like Yehuda does with test-unit in http://pivotallabs.com/talks/76-extending-rails-3 minute 34.
an example:
describe …
0
votes
0answers
44 views
Having issues with rspec and factory_girl validations and associations
To start out, here is the failing message:
ActiveRecord::RecordInvalid in 'Event should be valid'
Validation failed: Single access token has already been taken, Login has already been taken, Email …
