diff options
author | Carlos Goce <carlosgoce@gmail.com> | 2015-01-23 18:59:53 +0100 |
---|---|---|
committer | Carlos Goce <carlosgoce@gmail.com> | 2015-01-23 18:59:53 +0100 |
commit | f31f9b3c634e357757086c9737be8d6780bf1921 (patch) | |
tree | 71cdbfde9af20dbb69e493bc5a6fd8d0ea8cbd46 /spec | |
parent | caa0a9f01c4f3a8ca85a0ce4e335c71235006432 (diff) | |
download | pdf-calendars-f31f9b3c634e357757086c9737be8d6780bf1921.tar.gz pdf-calendars-f31f9b3c634e357757086c9737be8d6780bf1921.tar.bz2 pdf-calendars-f31f9b3c634e357757086c9737be8d6780bf1921.zip |
Day names are localized
Diffstat (limited to 'spec')
-rw-r--r-- | spec/calendar_spec.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/calendar_spec.rb b/spec/calendar_spec.rb index fc78cc0..770634a 100644 --- a/spec/calendar_spec.rb +++ b/spec/calendar_spec.rb @@ -7,6 +7,7 @@ I18n.backend.load_translations describe 'Calendar' do before(:each) do + I18n.locale = 'en' @calendar = CarlosGoce::Calendar.new 2015 end @@ -35,9 +36,7 @@ describe 'Calendar' do expect(@calendar.to_h[1][:days_names].count).to eq 31 end - it 'return the day names localized', - :pending => "Not working!!! Months are localized, why days aren't?" do - skip 'Is not working, the names are localized so why days are not?' + it 'return the day names localized' do I18n.locale = 'es' expect(@calendar.to_h[1][:days_names].first).to eq 'jueves' end |