These are some very basic examples on how TDD and BDD work in Ruby.
- Write the smallest possible test case (unit test) for one unit in the code.
- Run the test and watch it failing.
- Write the actual code for this unit.
- Run the test again.
- Repeat this as long as the test passes and refactor the code in the process.
- Go inside the
tdd
folder - Execute the test with
ruby tests/hello_test.rb
The test explicitly does not fail because of the CI tests.
The idea behind BDD is built on top of TDD, with the difference of writing tests as a specification of the behavior of a system instead of just testing the code.
Before you start with Cucumber, you need to initializes the folder structure and generate conventional files. This was already done here and you only need it when you start a fresh project.
- Go inside the
bdd
folder - Execute the test with
# execute all tests
cucumber
# execute one specific test
cucumber features/calculator.feature
cucumber features/hello.feature