holidays/features/Holiday_MLK.feature

30 lines
812 B
Gherkin
Raw Permalink Normal View History

2024-08-14 21:45:24 +00:00
Feature: Define New Years Day Holiday
In order to properly identify when a day is the New Years Day Holiday
As a developer
I want to have a way to detect, and return this condition
Background:
Given I have a MLKHoliday Holiday Object
Scenario: verify the name
Then the name will be "Martin Luther King Holiday"
Scenario: verify the description
Then the description will be "Second Monday in January"
Scenario: verify a valid date in 2020
When I check "2020-01-20"
Then it returns true
Scenario: verify a valid date in 2021
When I check "2021-01-18"
Then it returns true
Scenario: verify a valid date in 2022
When I check "2022-01-17"
Then it returns true
Scenario: verify a non-valid date
When I check "2022-01-01"
Then it will return false