aboutsummaryrefslogtreecommitdiffstats
path: root/spec/calendar_spec.rb
blob: 71252b372c3a86f191805d795d29a3eada4ae3d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'rspec'
require 'rspec/expectations'
require_relative '../lib/carlosgoce/calendar'

I18n.load_path = Dir['config/locales/*.yml']
I18n.backend.load_translations

describe 'Calendar' do
  before(:each) do
    @calendar = CarlosGoce::Calendar.new
  end

  it 'should be initialized with the current year' do
    expect(@calendar.year).to eq(Date.today.year)
  end

  describe 'Return months and days of given year' do
    it 'should have all months of the year' do
      expect(@calendar.to_h.count).to eq(12)
    end

    it 'localize month names' do
      expect(@calendar.to_h.keys.first.to_s).to eq('january')
      I18n.locale = 'es'
      expect(@calendar.to_h.keys.first.to_s).to eq('enero')
    end
  end
end