Can someone explain the difference between these two gems? Are both part of BDD buth why should I use one or another or both together? Thanks for the answers
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
cucumber is a BDD tool that expresses testing scenarios in a business-readable, domain-specific language. capybara is an automated testing tool for ROR applications. On the capybara github page, there's an example on using capybara with cucumber. |
||||
|
|
|
Cucumber is a general BDD tool. It knows nothing about web apps. So Cucumber step definitions call Capybara in order to test web apps. |
|||
|
|