Sha256: d87685fd0b33bb8794b9c59c650c1d0956ffbc3556008597aef9369a882e59fd

Contents?: true

Size: 388 Bytes

Versions: 1

Compression:

Stored size: 388 Bytes

Contents

require 'spec_helper'

describe CiceroText do
  describe "#text" do
    context 'With locale parameter' do
      it 'Returns the desired verision' do
        CiceroText.text('ES').should eql(CiceroText::ES)
      end
    end
    context 'Without locale parameter' do
      it 'Returns the latin verision' do
        CiceroText.text.should eql(CiceroText::LA)
      end
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cicero-0.0.1 spec/spec/cicero_text_spec.rb