Re: [rspec-users] response.should have_content("1 movie") does not seem to work for me

2012-06-22 Thread David Chelimsky
On Fri, Jun 22, 2012 at 4:36 AM, Joshua Muheim wrote: > It seems I have to use > > page.should have_content("...") > > instead of > > response.should have_content("...") > > Maybe that's because Capybara is the default engine now and not Webrat? While Capybara seems to have become the de facto st

Re: [rspec-users] An open source project with very good use of Cucumber?

2012-06-22 Thread David Chelimsky
On Fri, Jun 22, 2012 at 4:34 AM, Joshua Muheim wrote: > Hey everybody > > I came here through the RSpec Book, so I grant myself to ask something > about Cucumber here. ;) You can ask, but you'll probably have a more well versed Cucumber-using audience on the Cucumber list: https://groups.google.

Re: [rspec-users] An open source project with very good use of Cucumber?

2012-06-22 Thread Roger Pack
redcar uses it, or at least used to, with good results. -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] An open source project with very good use of Cucumber?

2012-06-22 Thread Joshua Muheim
You mean this? https://github.com/danlucraft/redcar Having troubles to find the .feature files, though. By the way, a Rails project would be best... :) -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org h

Re: [rspec-users] An open source project with very good use of Cucumber?

2012-06-22 Thread Sidu Ponnappa
The Rspec codebase is itself a great example of how to use Cucumber correctly, IMO. Are you new to TDD entirely? If yes, then I'd suggest you come up to speed on that first. In my experience, many codebases substitute cucumber specs for TDD which is a bad idea. Best, Sidu. http://c42.in http://tw

Re: [rspec-users] Selenium+Autotest: how to run browser in background?

2012-06-22 Thread Joshua Muheim
Well, didn't find a solution, but using the :chrome driver lets Chrome be activated in the background... See http://collectiveidea.com/blog/archives/2011/09/27/use-chrome-with-cucumber-capybara/ -- Posted via http://www.ruby-forum.com/. ___ rspec-use

[rspec-users] An open source project with very good use of Cucumber?

2012-06-22 Thread Joshua Muheim
Hey everybody I came here through the RSpec Book, so I grant myself to ask something about Cucumber here. ;) I'm still very new to the topic and read a lot of different opinions about how to do great Cucumber scenarios. Still, I'm a bit unsure as I don't have any experience in using it. So I hope

Re: [rspec-users] response.should have_content("1 movie") does not seem to work for me

2012-06-22 Thread Joshua Muheim
It seems I have to use page.should have_content("...") instead of response.should have_content("...") Maybe that's because Capybara is the default engine now and not Webrat? -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspe