gem 'rspec-core'
21 gem 'rspec-mocks'
22 gem 'rack-test'
23 gem 'rspec'
24 gem 'autotest'
25 gem 'autotest-growl'
26 gem 'autotest-fsevent'
27 gem 'capybara'
28 gem 'rspec-expectations'
29 gem 'webrat'
30 gem 'steak'
31 gem 'hpricot'
32 gem 'mechanize'
33 gem 'factory_girl'
> --
> You received this message because you are subscribed to the Google Groups
> "sinatrarb" group.
> To post to this group, send email to sina...@googlegroups.com.
> To unsubscribe from this group, send email to
> sinatrarb+...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/sinatrarb?hl=en.
--
You received this message because you are subscribed to the Google Groups "sinatrarb" group.
To post to this group, send email to sina...@googlegroups.com.
To unsubscribe from this group, send email to sinatrarb+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sinatrarb?hl=en.
I agree with apremdas regarding cucumber. I don't like it even for rails apps.
I prefer Capybara and Minitest for my acceptance testing.it's faster to write and easier to maintain.
--
You received this message because you are subscribed to the Google Groups "sinatrarb" group.
To view this discussion on the web visit https://groups.google.com/d/msg/sinatrarb/-/wuKi1bS4FfsJ.
To post to this group, send email to sina...@googlegroups.com.
To unsubscribe from this group, send email to sinatrarb+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sinatrarb?hl=en.
On 31 Jan 2012, at 17:28, Don Hill wrote:
> Here is my test group that I am using. I think I had this issue
> before. Send the stack so we can take a look. I am also using rvm and
> bundler to isolate things from my system rubygems.
>
I'll send the stack when I get back to this, I really appreciate the offer of help. I also use rvm and bundler, but I'd like to try rbenv too.
On 1 Feb 2012, at 10:10, Andrew Premdas wrote:
> You can easily use Cucumber with Sinatra if you want too. Though I suspect many (most?) sinatra users would consider it overkill for a Sinatra app.
I haven't gotten along well with Cucumber when I've tried it. I didn't like the way it writes the specs, I prefer the shorter `subject{ ... }` `it{ ... }` style of writing specs now.
I also felt I had to be too prescriptive in writing the features. Having said all that, I think the general idea of having features is really good, and the 3 point style is something I read in two places previously, one of them in http://www.alistapart.com/articles/taking-the-guesswork-out-of-design/, and the other in a book called Brilliant Project Management.
Maybe I need to try something like steak and see if it's for me. But not until I can get Capybara to work without problems!
Regards
Iain