Cucumber is a Behavior Driven Development (BDD) tool.

learn more… | top users | synonyms

67
votes
6answers
13k views

rspec vs cucumber (rspec stories)

When should I use specs for Rails application and when Cucumber (former rspec-stories)? I know how both work and actively use specs, of course. But it still feels weird to use Cucumber. My current ...
64
votes
7answers
7k views

iOS Tests/Specs TDD/BDD and Integration & Acceptance Testing

What are the best technologies to use for behavior-driven development on the iPhone? And what are some open source example projects that demonstrate sound use of these technologies? Here are some ...
40
votes
1answer
1k views

Capybara does not pass header after form submit

I am building a Rails 3 app which renders different views for mobile devices (using jQuery Mobile) and regular desktop browsers. I am testing with Cucumber/Capybara, and have separate test suites for ...
32
votes
8answers
6k views

Cucumber alternative for .NET

Quick one, has anyone come across a library similar to Ruby's cucumber (a human readable DSL for defining use case stories that can be tested against) in the .NET sphere?
32
votes
9answers
4k views

Is there a sample Rails application with a number of cucumber stories?

I'm trying to really understand Cucumber stories. I get it, but I'm really slow writing them. I think if I saw a good fleshed out application, I'd get closer to where I want to be. There are some ...
30
votes
6answers
4k views

Cuke4Nuke or SpecFlow?

I am trying to decide if I should use Cuke4Nuke or SpecFlow. What are the pro/cons of each? Opinions on which is better and why. Thanks!
24
votes
5answers
1k views

BDD with Cucumber and rspec - when is this redundant?

A Rails/tool specific version of: How deep are your unit tests? Right now, I currently write: Cucumber features (integration tests) - these test against the HTML/JS that is returned by our app, but ...
22
votes
6answers
6k views

How to test a confirm dialog with Cucumber?

I am using Ruby on Rails with Cucumber and Capybara. How would I go about testing a simple confirm command ("Are you sure?")? Also, where could I find further documentation on this issue? Thank ...
16
votes
3answers
360 views

Outside-in BDD (with Specflow)

I'm new to BDD, but I found it very interesting and want to develop my next project using BDD. After googling and watching screencasts I still have lots of questions about BDD in real life. 1. ...
16
votes
5answers
3k views

ruby 1.9.2 strange warning when running cucumber specs

I just updated to use rails 3 and tried my first project with rails 3. When I run my cucumber specs then I get following strange warnings ...
15
votes
5answers
3k views

BDD and TDD for node.js?

What is used for BDD and TDD with node.js? I'm used to use Cucumber + RSpec. What's a good combo for node.js? thanks
13
votes
1answer
2k views

Rails: Good Rspec2 example usage? (Also: Cucumber, Pickle, Capybara)

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 ...
13
votes
1answer
3k views

Cucumber and Capybara, clicking a non-link or button element

I am trying to test an inplace editor using Cucumber/Capybara/Selenium stack, but my problem is that the editor is activated by clicking a div and not a link or button. I can not seem to figure out ...
13
votes
3answers
4k views

Reuse cucumber steps

I want to reuse some cucumber steps but can't seem to find the right way. I want to write a step like: Given /^I login with (.*) credentials$/ |type| # do stuff with type being one of "invalid" or ...
13
votes
5answers
3k views

What is the Path to Learn BDD on Ruby On Rails?

I want to start BDD on Ruby On Rails what should I learn? I don't know anything about BDD, RSpec or Cucumber. What is the best way to learn? Tutorials? Something that cover things like 'What behavior ...
12
votes
4answers
3k views

Cucumber/Webrat: follow link by CSS class?

is it possible to follow a link by it's class name instead of the id, text or title? Given I have (haha, cucumber insider he?) the following html code: <div id="some_information_container"> ...
12
votes
4answers
1k views

Is Test::Unit still relevant in rails?

I am learning Rails the age old way. By reading Agile Web Development with Rails (3rd Edition) as a starting point. I am currently in the chapter that teaches Testing. I am also aware of other BDD ...
11
votes
2answers
2k views

Rails 3.1.1 and Cucumber - Error

I have git a little problem running Cucumber. When using cucumber I get the following results: Yanniss-MacBook:rechnungen yannis$ cucumber Using the default profile... ...
11
votes
3answers
756 views

Good Cucumber examples in the wild?

I've tried Cucumber for a few projects a couple of years ago and am looking to give it another go. I don't really need another "Beginning Cucumber" article. Instead, I'd like to see some actual uses ...
11
votes
9answers
4k views

Cucumber, capybara and selenium - Submiting a form without a button

I have a test using Cucumber, capybara and selenium driver. This test should go to a form and submit it. The normal text would be Scenario: Fill form Given I am on the Form page When I ...
11
votes
9answers
7k views

Session variables with Cucumber Stories

I am working on some Cucumber stories for a 'sign up' application which has a number of steps. Rather then writing a Huuuuuuuge story to cover all the steps at once, which would be bad, I'd rather ...
10
votes
4answers
2k views

Rails 3.0.9 + Devise + Cucumber + Capybara the infamous “No route matches /users/sign_out”

I am using devise 1.4.2 with rails 3.0.9, cucumber-rails 1.0.2, capybara 1.0.0. I got No route matches "/users/sign_out" error when I clicked logout. I added :method => :delete to link_to tag after ...
10
votes
3answers
417 views

webrat autofilling form fields

I am learning how to write tests with cucumber/webrat. One of my test scenarios is set to test form validation (leaving field(s) empty). Strangely enough, fields that I do not fill-in with fill_in are ...
10
votes
5answers
4k views

How to learn/teach Gherkin for Cucumber

I'd like to enable the business analysts to be able to write all of their specs for features, scenarios and steps that is Cucumber friendly using Gherkin. I've read some of the basic info on the ...
10
votes
5answers
2k views

Cucumber + testing JS alert

I'm trying to test a JS confirmation dialog with Cucumber on Rails. I have a window.onbeforeunload event handler that will prompt you with a confirmation dialog if you try to navigate away from the ...
9
votes
4answers
594 views

Should BDD scenarios include actual test data, or just describe it?

We've come to a point where we've realised that there are two options for specifying test data when defining a typical CRUD scenario: Option 1: Describe the data to use, and let the implementation ...
9
votes
1answer
919 views

How to verify number of records using capybara

I am using capybara along with cucumber on a Rails 2.3.9 project. I have users index page and I have two records there. Using capybara how do I assert that there are only two records in the page. ...
8
votes
2answers
303 views

“rake” runs all my cucumber tests fine but “cucumber” doesn't have the steps

I've inherited a rails (3) app and am trying to get to grips with the existing cucumber tests. I've got the following setup in the app's 'features' folder (i've missed out any files which aren't ...
8
votes
2answers
1k views

How to get parent node in Capybara?

I'm working with many jQuery plugins, that often create DOM elements without id or other identification properties, and the only way to get them in Capybara (for clicking for example) - is to get ...
8
votes
1answer
1k views

Cucumber not showing coloured output in windows

this is probably something really stupid but I can't work it out. I upgraded my version of cucumber to v 0.10.0 and now the test's (running on Win 7) are not showing coloured output with the "pretty" ...
8
votes
4answers
1k views

Why is cucumber considered an integration testing tool instead of a unit testing tool?

This has always bothered me. Why is it people say to unit test in rspec but integration test in cucumber? I am not asking why these tests are necessary - I know what the difference is between ...
8
votes
1answer
2k views

Cucumber/Capybara test no longer run in Rails 3 project

Do the latest versions of these gems not work with each other any more? It appears that something may have gotten out of whack in my bundle. undefined local variable or method `node' for ...
8
votes
6answers
1k views

Textmate cucumber bundle issues - 'Run Feature' producing errors

From a cucumber feature file when I go to 'Run features' Im getting the error below in the popup box that appears. How do I fix this? /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in ...
8
votes
3answers
2k views

Undefined webrat methods in cucumber step_definitions

When i run my features i get this error: undefined method `visit' for #<Cucumber::Rails::World:0x81b17ac0> (NoMethodError) This is the relevant part of my Gemfile. group :development, :test ...
8
votes
1answer
583 views

Parse issues when trying to use “Examples” section in Cucumber feature

No luck in googling on this error message features/manage_hand_evaluator.feature: Parse error at features/manage_hand_evaluator.feature:21. Found examples when expecting one of: comment, py_string, ...
8
votes
3answers
1k views

Seed data in cucumber tests

I'm writing a web app which is used a SaS. Each customer has their own db and app directory so I have a rake task which creates all necessary minimum data (seed data) to run their website: default ...
8
votes
3answers
2k views

How do you mark a Cucumber Scenario as Pending

How do I mark a cucumber scenario as pending so it doesn't get counted as a passed? Scenario: Guest should not see edit link # pending implementation Shouldn't I be able to mark is as pending?
8
votes
5answers
4k views

Cucumber for PHP application

Is it possible to use Cucumber outside Rails? I'd like to start using it for testing some of my PHP applications, but I really don't know how to start. Probably the easiest way would be creating a ...
8
votes
1answer
5k views

Cucumber + Webrat + Selenium guide

I have been using Cucumber and Webrat for a while. I know need to start writing behaviour that involve AJAX interactions so I was thinking to use the Selenium adapter for Webrat. Can anyone point out ...
8
votes
4answers
4k views

Rspec integration tests without cucumber?

Is there a way to do integration tests with Rspec without using Cucumber? I prefer using just plain old Webrat. Thanks.
7
votes
5answers
323 views

How to start with testing a Rails application?

I would like to write some automatic tests for my Rails 3 application. I wonder how to start with that. I've heard about Selenium/RSpec/Cucumber, and I guess there are many more options. What are ...
7
votes
2answers
783 views

Rails3 Google Maps testing with selenium

I'm trying to test a google maps app with Rails3. I'm using cucumber with capybara and selenium for javascript testing. I have a map where I wait for google maps to be loaded, and then send an ajax ...
7
votes
2answers
2k views

SpecFlow/Cucumber/Gherkin - Using tables in a scenario outline

Hopefully I can explain my issue clearly enough for others to understand, here we go, imagine I have the two following hypothetical scenarios: Scenario: Filter sweets by king size and nut content ...
7
votes
1answer
290 views

Are there any Rails plugins that can generate models, views, etc using Cucumber scenarios?

I am planning on creating a plugin that will generate app code based on Cucumber scenarios, but I want to make sure I am not reinventing the wheel here. Is anyone aware of a plugin that works with ...
7
votes
2answers
2k views

Rails, Capybara and subdomains: how to visit certain subdomain

Rails 3, Cucumber 0.9.4, Capybara 0.4.0 I want to test my features with subdomain. I found that solution: Given /^I visit subdomain "(.+)"$/ do |sub| Capybara.default_host = "#{sub}.example.com" ...
7
votes
2answers
658 views

Running single cucumber feature doesn't load step definitions

I have a cucumber feature at features/object/create_object.feature. It passes when I execute all of my features with the 'cucumber' command. I'm trying to execute this feature by itself using these ...
7
votes
3answers
563 views

How can I test JQuery UI Sortable with Cucumber

I'm tryting to write a cucumber/capybara test to reorder some items and then save them back. Any thoughts on how to best do this?
7
votes
4answers
2k views

How can I use Cucumber to test Devise's Rememberable functionality?

I'd like to have a Cucumber feature testing the rememberable functionality of devise (a remember me cookie). It is easy to check the remember me check box using capybara but how should I simulate a ...
7
votes
1answer
410 views

Cucumber's ANSI colors messing up emacs compilation buffer

When working in Emacs, I use the compile command (F12 by default) to run programs. When I run Cucumber in Emacs, Cucumber spits out ANSI colors that the Emacs compilation mode doesn't interpret. The ...
7
votes
1answer
1k views

How do I disable a feature in specflow (Gherkin) without deleting the feature?

I have some SpecFlow features (using the Gherkin syntax) and I would like to temporarily disable the feature to prevent its tests from running? Is there an attribute I can mark the feature with to do ...

1 2 3 4 5 27