0
votes
2answers
35 views
Variable Passing in Rails Controller Tests
I am doing some controller testing with RSpec and Mocha. Here is an example
describe MenuItemsController, "creating a new menu item" do
integrate_views
fixtures :menu_items
…
0
votes
0answers
23 views
How can I spec out an authlogic sessions controller using using a stub?
I want to test my User Session Controller testing that a user session is first built then saved. My UserSession class looks like this:
class UserSession < Authlogic::Session::B …
0
votes
0answers
12 views
Testing ApplicationHelper methods that rely on the current controller path
I have an method in ApplicationHelper
def javascript_auto_link_tags
js_path = "#{RAILS_ROOT}/public/javascripts"
js = "#{controller.controller_path}.js"
javascript_include_t …
0
votes
2answers
43 views
Stubbing named_scope in an RSpec Controller
I haven't been able to find anything for a situation like this. I have a model which has a named scope defined thusly:
class Customer < ActiveRecord::Base
# ...
named_scop …
2
votes
1answer
34 views
Rake stats and Cucumber
Hello,
I'm using Cucumber with RSpec in a Rails project.
When I use the "rake stats" task, I get the following :
+----------------------+-------+-------+---------+---------+----- …
4
votes
4answers
97 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 …
0
votes
2answers
22 views
Can someone show me an example of using failure_message_for_should using rspec?
I am trying to return more informative failure messages from an expectation. I have a helper method that iterates a hash, testing for mass assignment protection on a model. If the …
1
vote
4answers
67 views
rspec mocks: verify expectations in it “should” methods?
I'm trying to use rspec's mocking to setup expectations that I can verify in the it "should" methods... but I don't know how to do this... when i call the .should_receive methods o …
1
vote
2answers
45 views
Autospec / rspec not working, doing something wrong?
I wonder if this has its place on StackOverflow, but since it IS programming-related, I will shoot it away.
Here's my problem. I am new to TDD and I love Ruby, so the obvious path …
1
vote
1answer
48 views
Rspec Mocks: mock / yield the block from a method call
I've got this code:
Net::SSH.start(@server, @username, :password => @password) do |ssh|
output = ssh.exec!(@command)
@logger.info 'SSH output: '
@logger.info out …
0
votes
3answers
92 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 m …
1
vote
1answer
32 views
testing threaded code in ruby
I'm writing a delayed_job clone for DataMapper. I've got what I think is working and tested code except for the thread in the worker process. I looked to delayed_job for how to t …
0
votes
1answer
29 views
Trying to mock “new” through an association
This is in my controller
@business = @current_user.businesses.new(params[:business])
@businesses is an array of business objects and I'm unsure of how to mock this cascade of ca …
2
votes
3answers
61 views
Testing modules in rspec
What are the best practices on testing modules in rspec? I have some modules that get included in few models and for now I simply have duplicate tests for each model (with few diff …
2
votes
1answer
42 views
check for (the absence of) `puts` in RSpec
I am using rspec for my test in a ruby project, and I want to spec that my program should not output anything when the -q option is used. I tried:
Kernel.should_not_receive :puts …
