diff --git a/src/Countries/Sudan.php b/src/Countries/Sudan.php new file mode 100644 index 000000000..a60128d32 --- /dev/null +++ b/src/Countries/Sudan.php @@ -0,0 +1,31 @@ + '01-01', + 'Independence Day' => '01-01', + 'Labour Day' => '05-01', + 'Christmas Day' => '12-25' + ], $this->variableHolidays($year)); + } + + /** + * @return array + */ + private function variableHolidays(int $year): array + { + return []; + } +} \ No newline at end of file diff --git a/tests/Countries/SudanTest.php b/tests/Countries/SudanTest.php new file mode 100644 index 000000000..66e1d0ac3 --- /dev/null +++ b/tests/Countries/SudanTest.php @@ -0,0 +1,18 @@ +get(); + + expect($holidays) + ->toBeArray() + ->not()->toBeEmpty(); + + expect(formatDates($holidays))->toMatchSnapshot(); +}); \ No newline at end of file