vote up 2 vote down star

Is there a way to do integration tests with Rspec without using Cucumber? I prefer using just plain old Webrat. Thanks.

flag

3 Answers

vote up 1 vote down check

The latest version of RSpec-Rails (1.2.7) now has integration support. Upgrade then start adding specs to spec/integration or use the 'integration_spec' generator. Configure Webrat in spec/spec_helper.rb and you're set!

link|flag
Interesting. I wonder why they incorporated integration specs to rspec, given the popularity of cucumber. – gsmendoza Jun 25 at 12:24
There's many places where Cucumber would be overkill, like testing internal APIs, for example. – Jeff Siegel Jul 14 at 17:12
vote up 0 vote down

As far as I know Rspec is perfectly capable of testing views and controllers as part of integration tests. A quick look around the internet shows this article at Robby on Rails on view testing and some of the Rdocs within RSpec might help.

Hope this points you in the right direction - I'm afraid I use cucumber myself.

link|flag
vote up 0 vote down

So far, the only article I found is this

webrat-with-rspec-no-cucumber

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.