Feature: subtraction

    Just a simple subtraction feature with some testcase

    Scenario: 2 - 1

        Given we have two numbers: 2 and 1
        When we subtract the numbers
        Then the result is: 1


    Scenario: 5 - 3
        Same as above just now with 5-3

        Given we have two numbers: 5 and 3
        When we subtract the numbers
        Then the result is: 2