0
votes
1answer
24 views
RSpec in Rails: How to skip a before_filter?
Hello everyone,
I am trying to test my controller and maintain separation of concerns.
The first concern is "Who is able to execute which action?"
I am using authlogic for authe …
3
votes
1answer
135 views
+100
Silencing Factory Girl logging
Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my sp …
0
votes
2answers
38 views
How to use rspec to test named routes?
Hi there,
Given I have a named route:
map.some_route '/some_routes/:id', :controller => 'some', :action => 'other'
How do I use the routing spec file 'spec/routing/some_ro …
0
votes
0answers
22 views
Why are my Cucumber tests keeping the MySQL connection alive after each scenario?
I was having a really odd problem in my cucumber tests that was causing scenarios that were passing individually, to fail when run with others in a feature. I deduced this was a My …
0
votes
0answers
16 views
Is it possible to use rake with an existing spork server?
Hi there,
Waiting for migrations and other rake tasks just takes a few seconds too long (kinda like waiting for autospec to load the entire environment before running each file. Si …
0
votes
1answer
42 views
Rspec: undefined method `new’ error in ActiveRecord model
I know this has to be something stupid, but I keep getting the following error in one of my examples:
undefined method `new' for #<Class:0x211d274>
I have created a simple …
0
votes
1answer
18 views
Controller specs in isolation mode and render :update
Hi folks,
I am using RSpec for writing my controller tests/specs.
I faced the problem, that the following code gets rendered:
render :update do |page|
page['middle_content'].r …
1
vote
2answers
33 views
How do I get colour with Windows command prompt using RSpec in Ruby?
In other o/s RSpec returns nicely coloured results (red, green etc).
However in the windows (Vista) command prompt my text output is just plain old boring white.
How can I bring …
1
vote
2answers
28 views
How to test email sending using Rspec?
What are the best practices and tools to test email-sending using rspec with Rails?
For instance, how do I test that an email has been sent or what should I test to have efficien …
0
votes
1answer
49 views
Cucumber and/or RSpec with pure Java application using JRuby
After doing some stuff in Ruby on Rails with Cucumber, RSpec and Ruby BDD in general, comming back to JUnit in my Java apps feels like incredible pain to me. I just love the conven …
1
vote
1answer
39 views
How to use rspec’s should_raise with any kind of exception?
I'd like to do something like this:
some_method.should_raise <any kind of exception, I don't care>
How should I do this?
some_method.should_raise exception
... doesn't …
1
vote
1answer
18 views
Can’t get rspec, spork and debugger to play nice.
Given I am a dumb programmer
and I am using rspec
and I am using spork
and I want to debug ...mmm...let's saaay, a spec for Phone.
Then, where should I put the "require 'ru …
1
vote
1answer
19 views
rspec testing views with internationalization ?
Hello,
I want to make sure I have the right meta desc/keyword and title text in my view so I want to create rspec views tests for that. Now the real challange here is how to make …
0
votes
1answer
33 views
Has anyone gotten UltiSnips on Vim to work with Rails and/or Rspec snippets from textmate?
Hi there,
I was able to convert the TextMate Snippets from the TextMate SVN using the provided tool "get_tm_snippets.py", but after that, I'm not sure how to add them to the contex …
0
votes
4answers
92 views
TDD/BDD Rails Cucumber / RSpec duplication
Can someone please clarify using a SIMPLE user story the full slice of what Cucumber would be used for and what RSpec would be used for? I purchased the RSpec book the other day a …
