Sha256: e0184fd7aad6f12e19bcaa9b28585fe614f068de9d0ca5fcc395e7ddae01e77f

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

require 'spec_helper'

shared_examples_for 'by fortnight' do

  describe '#by_fortnight' do

    context 'point-in-time' do
      subject { Post.by_fortnight('2014-01-01') }
      it { expect(subject.count).to eql(5) }
    end

    context 'timespan' do
      subject { Event.by_fortnight(0) }
      it { expect(subject.count).to eql(7) }
    end

    context 'timespan strict' do
      subject { Event.by_fortnight(Date.parse('2014-01-01'), strict: true) }
      it { expect(subject.count).to eql(0) }
    end

    context 'with :year option' do

      context 'point-in-time' do
        subject { Post.by_fortnight(26, year: 2013) }
        it { expect(subject.count).to eql(6) }
      end

      context 'timespan' do
        subject { Event.by_fortnight(26, year: 2013) }
        it { expect(subject.count).to eql(7) }
      end

      context 'timespan strict' do
        subject { Event.by_fortnight(26, year: 2013, strict: true) }
        it { expect(subject.count).to eql(1) }
      end
    end

    it 'should raise an error when given an invalid argument' do
      expect { Post.by_fortnight(27) }.to raise_error(ByStar::ParseError, 'Fortnight number must be between 0 and 26')
    end

    it 'should be able to use an alternative field' do
      expect(Event.by_fortnight(field: 'end_time').count).to eq 5
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
by_star-4.0.1 spec/integration/shared/by_fortnight.rb