Skip to content

Commit

Permalink
Good/bad for
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaclayton committed Apr 11, 2010
1 parent c639217 commit b918d13
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
4 changes: 3 additions & 1 deletion showoff.json
@@ -1,5 +1,7 @@
[
{"section":"title"},
{"section":"about"},
{"section":"what_is_cucumber"}
{"section":"what_is_cucumber"},
{"section":"what_is_cucumber_good_for"},
{"section":"what_is_cucumber_not_good_for"}
]
4 changes: 4 additions & 0 deletions what_is_cucumber_good_for/what_is_cucumber_good_for.md
@@ -0,0 +1,4 @@
!SLIDE bullets incremental
# What's it good for?
* Describing _behavior_ of an application
* Ensuring the entire application works as expected
30 changes: 30 additions & 0 deletions what_is_cucumber_not_good_for/what_is_cucumber_not_good_for.md
@@ -0,0 +1,30 @@
!SLIDE bullets incremental
# What's it NOT good for?
* A _really_ fast test suite

!SLIDE bullets incremental
# Cucumber scenarios are integration tests
* No mocking/stubbing means data is persisted, images are processed, etc.
* But... tools like Testjour and Hydra exist to mitigate speed issues

!SLIDE bullets incremental
# It's not good for...
* Javascript testing

!SLIDE bullets
# JUST KIDDING!
* Selenium (yuck)
* Env.js, Johnson, HolyGrail...

!SLIDE code smaller
Scenario: Receive answer suggestions
Given the question "How old are you?" has been answered with:
| grandfather |
| great, grand |
| fifteen |
When I go to the members homepage
And I start to fill in "answer" with "gr"
Then I should see the following suggestions:
| grandfather |
| great |
| grand |

0 comments on commit b918d13

Please sign in to comment.