I'm looking for a rather recent open source application that uses Rspec 2 as test library. I'd like to see how an experienced developer utilizes the library properly to test the full stack, since I'm constantly in doubt concerning my own knowledge (coming from testunit and partly due to the rather sparse documentation of the latest Rspec release, even though it is constantly improved).
If a project would use Cucumber, Pickle and/or Capybara as well together with Rspec 2, you'd have me jumping for joy.
Any pointers?
Cheers!
My 2 cents:
Use Steak instead of Cucumber. It RSpec at its core, it is simple and it does the job.
https://github.com/cavalle/steak
Capybara allow you use different drivers. Some drivers support javascript, run with a browser, faster, slower, etc. Use the best Driver for the spec you are testing using Swinger:
https://github.com/jeffkreeftmeijer/swinger
I use my own fork of Akephalos – a driver – which is fast, support javascript, UTF-8 (that's what my fork adds) and doesn't need an external browser.
https://github.com/Nerian/akephalos2
A good practice for RSpec is to use 'Context'. Ask me if you need clarification. Also, take note of the let method. It returns whatever the block returns. It is useful for declaring mock a object inside and using them on the samples. .
Also, the book: The RSpec Book, of Pragmatic Programmers is a very good resource for initiating yourself about the core concepts behind RSpec, Capybara, Cucumber and all this Behaviour Driven Development agile thing :)
Edit:
Also, I use Machinist2 for fixtures. https://github.com/notahat/machinist
Works great. Better than Factory girl.
There is also Fabricator, which have an excellent website and a very usable DSL.
https://github.com/paulelliott/fabrication
You can use Machinist with Forgery in order to create intelligent data.
https://github.com/sevenwire/forgery
You can combine this with a Thor task in order to populate you development database, to see the application as the final user would see it.
The documentation of RSpec 2 has many examples:
http://relishapp.com/rspec
Also, this Post give many other tips:
http://eggsonbread.com/2010/03/28/my-rspec-best-practices-and-tips/
Another post with very good advise:
http://flux88.com/2011/05/dry-up-your-rspec-files-with-subject-let-blocks/
Optimising the execution time of tests:
http://blog.leshill.org/blog/2011/10/23/fast-specs.html
http://jeffkreeftmeijer.com/2011/spec-helpers-bundler-setup-faster-rails-test-suites/