37 lines
1.5 KiB
Ruby
37 lines
1.5 KiB
Ruby
|
require File.dirname(__FILE__) + '/../test_helper'
|
||
|
require 'holidays/gb'
|
||
|
|
||
|
# This file is generated by the Ruby Holiday gem.
|
||
|
#
|
||
|
# Definitions loaded: data/gb.yaml
|
||
|
class GbDefinitionTests < Test::Unit::TestCase # :nodoc:
|
||
|
|
||
|
def test_gb
|
||
|
{Date.civil(2008,1,1) => 'New Year\'s Day',
|
||
|
Date.civil(2008,3,21) => 'Good Friday',
|
||
|
Date.civil(2008,3,23) => 'Easter Sunday',
|
||
|
Date.civil(2008,5,5) => 'May Day',
|
||
|
Date.civil(2008,5,26) => 'Bank Holiday',
|
||
|
Date.civil(2008,11,5) => 'Guy Fawkes Day',
|
||
|
Date.civil(2008,12,25) => 'Christmas Day',
|
||
|
Date.civil(2008,12,26) => 'Boxing Day'}.each do |date, name|
|
||
|
assert_equal name, Holidays.on(date, :gb, :informal)[0][:name]
|
||
|
end
|
||
|
|
||
|
assert_equal 'St. Patrick\'s Day', Date.civil(2008,3,17).holidays(:gb_nir, :informal)[0][:name]
|
||
|
|
||
|
assert_equal 'Christmas Day', Date.civil(2008,12,25).holidays(:gb_, :observed)[0][:name]
|
||
|
assert_equal 'Christmas Day', Date.civil(2009,12,25).holidays(:gb_, :observed)[0][:name]
|
||
|
assert_equal 'Christmas Day', Date.civil(2010,12,27).holidays(:gb_, :observed)[0][:name]
|
||
|
|
||
|
assert_equal 'Boxing Day', Date.civil(2008,12,26).holidays(:gb_, :observed)[0][:name]
|
||
|
assert_equal 'Boxing Day', Date.civil(2009,12,28).holidays(:gb_, :observed)[0][:name]
|
||
|
assert_equal 'Boxing Day', Date.civil(2010,12,28).holidays(:gb_, :observed)[0][:name]
|
||
|
|
||
|
[:gb_wls, :gb_eng, :gb_nir, :gb_eaw, :gb_].each do |r|
|
||
|
assert_equal 'Easter Monday', Date.civil(2008,3,24).holidays(r)[0][:name]
|
||
|
assert_equal 'Bank Holiday', Date.civil(2008,8,25).holidays(r)[0][:name]
|
||
|
end
|
||
|
end
|
||
|
end
|