To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorGather the next working date when a specified number of days are added
- Scenarios
-
- Return the next working day for a specified number of days
- Return the next working day for a specified number of days including a weekend
- Return the next working day for a specified number of days including a bank holiday
- Return the next working day for a large number number of specified days
- Return the next working day for a specified number of days
-
- Given
- the initial date details of "2016-05-23"
- And
- the number of specified days being "3"
- When
- the initial date and specified days are passed to the system
- Then
- the correct working day of "2016-05-26" is returned
- Return the next working day for a specified number of days including a weekend
-
- Given
- the initial date details of "2016-06-22"
- And
- the number of specified days being "3"
- When
- the initial date and specified days are passed to the system
- Then
- the correct working day of "2016-06-27" is returned
- Return the next working day for a specified number of days including a bank holiday
-
- Given
- the initial date details of "2016-08-26"
- And
- the number of specified days being "1"
- When
- the initial date and specified days are passed to the system
- Then
- the correct working day of "2016-08-30" is returned
- And
- the correct holidays number of "1" is returned
- Return the next working day for a large number number of specified days
-
- Given
- the initial date is today
- And
- the number of specified days being "520"
- When
- the initial date and specified days are passed to the system
- Then
- a valid past maximum date number is returned
Last published about 6 years ago by Matthew Thomas.