0
votes
7answers
563 views
Setup Factory Girl with Test::Unit and Shoulda
I'm trying to set up Factory Girl with Test::Unit and Shoulda in Ruby on Rails. I have installed the gem, created my factory file under the test/factories directory, and created my spec file under the …
0
votes
2answers
128 views
Using shoulda macros with RSpec
I'm trying to use the shoulda macros within RSpec and am having some problems.
I've done the following:
spec_helper.rb:
require 'shoulda/active_record/macros'
Spec::Runner.configure do |config|
…
0
votes
4answers
30 views
Shoulda tests failing on model with no id
I created a new model in my rails app. Since it's a one-to-one relation with another table, there's no need for the new model to have an id column. Everything is working fine, but for some reason, …
3
votes
4answers
114 views
Shoulda + FactoryGirl: Can I make my tests faster?
I'm looking for a way to speed up my Shoulda + FactoryGirl tests.
The model I'm trying to test (StudentExam) has associations to other models. These associated objects must exist before I can create …
1
vote
1answer
120 views
How to run a single shoulda context test in ruby Test::Unit framework
I can typically test a regular Test::Unit method using the following commandline syntax for a method "delete_user_test":
ruby functional/user_controller_test.rb -n delete_user_test
Now when I'm …
0
votes
1answer
46 views
Custom test runner for Ruby (and shoulda)
I want to modify the test runner when using Ruby and shoulda. The standard runner produces output like this:
....
Finished in 0.009167 seconds
4 examples, 0 failures
As a starting point, I'd like …
4
votes
4answers
142 views
BDD on Rails - Is the community more behind Shoulda or RSpec?
For a new application I want to start dabbling in BDD and I'm trying to decide between using RSpec or Thoughtbot's Shoulda. I like the macros that Shoulda uses, and the fact that it doesn't seem to …
0
votes
3answers
116 views
What test framework should I use to test my Rails model?
With the many testing framework that is available in the Ruby community namely: unittest, rspec, shoulda, and coulda, what would be the most appropriate testing framework to test my Rails model?
Do …
0
votes
1answer
84 views
Test::Unit tests passing on OS X, erroring out on CentOS
I have a set of Test::Unit tests for a Rails application. It was developed on OS X under Ruby 1.8.6, Rails 2.3.4.
I'm also using thoughtbot-shoulda 2.10.2.
I'm using standard Rails fixtures, not …
0
votes
0answers
24 views
Autotest starts slowly
Hi,
I set up a new project using community engine. I had installed before shoulda autotest factory girl webrat and had used on another project and it was good. But i set up these things on the new …
0
votes
1answer
179 views
uninitialized constant Test::Unit::TestResult::TestResultFailureSupport
I get the error in subj when I'm trying to run specs or generators in a fresh rails project.
This happens when I add shoulda to the mix.
I added the following in the config/environment.rb:
…
1
vote
5answers
217 views
What’s the main difference between cucumber and shoulda?
How would you make a decision between cucumber and shoulda if you were about to choose a testing framework?
What differentiates these two frameworks primarily?
1
vote
3answers
235 views
Tests pass using “autotest” but not “rake test” using Authlogic
My tests fail when doing "rake test:functionals" but they pass consistently using autotest.
The failing tests in question seems to be related to Authlogic not logging in the user properly when using …
0
votes
1answer
154 views
How do I test helper methods using Shoulda and set the params and request values?
I'm using rails 2.2.2 and wondering how can I set the params values to test my helper methods.
I found some examples to let you run tests with helper methods but it doesn't work for me when I use the …
0
votes
3answers
355 views
testing REST with shoulda and factory_girl - destroy
Hi,
i'm developing test for REST using shoulda and factory_girl. Code below
context "on :delete to :destroy" do
setup do
@controller = NewsArticlesController.new
@request = …
