/ruby-testing

Basic tests in Ruby for understanding TDD and BDD

Primary LanguageRubyMIT LicenseMIT

Tests RuboCop

Testing using Ruby and Cucumber

These are some very basic examples on how TDD and BDD work in Ruby.

Test-driven development (TDD)

General principles

  1. Write the smallest possible test case (unit test) for one unit in the code.
  2. Run the test and watch it failing.
  3. Write the actual code for this unit.
  4. Run the test again.
  5. Repeat this as long as the test passes and refactor the code in the process.

Executing the test

  • 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.

Behavior-driven development (BDD)

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.

Initialize Cucumber

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.

Executing the BDD tests

  • 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