Sha256: 90de7cd60468550b2c70ee783c237963abd70dc76644bf58bb704d3ef7f1660b

Contents?: true

Size: 382 Bytes

Versions: 2

Compression:

Stored size: 382 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

module ConstructorCore
  describe 'String' do
    describe '#accusative' do
      it 'should convert word to accusative' do
        'проверка'.accusative.should == 'проверку'
        'стол'.accusative.should == 'стол'
        'категория'.accusative.should == 'категорию'
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
constructor-core-0.7.9 spec/lib/constructor_core/string_spec.rb
constructor-core-0.7.8 spec/lib/constructor_core/string_spec.rb