Sha256: 6ce378f7be82cc546e327a27bbfda0557fe7e8f6abb5697713eb6c810d8e5e19

Contents?: true

Size: 1.06 KB

Versions: 12

Compression:

Stored size: 1.06 KB

Contents

Given /^the(?: following)? locale:?$/ do |string|
  @csl = CSL::Locale.load(string)
end

When /^I load the locale from the string$/ do |string|
  @csl = CSL::Locale.load(string)
end

When /^I ordinalize the number (\d+)(?: using the (long) form(?: and (feminine|masculine) gender))?$/ do |num, form, gender|
  @ordinal = @locale.ordinalize(num, :form => form, :gender => gender)
end

Then /^the ordinal should (?:be|equal) "([^"]*)"$/ do |ord|
  @ordinal.should == ord
end

When /^I ordinalize these numbers:?$/ do |table|
  @ordinals = table.rows.map do |row|
    num, form, gender, number = *row
    @csl.ordinalize(num, :form => form, :gender => gender, :number => number)
  end
end

Then /^the ordinals should (?:be|equal):?$/ do |table|
  @ordinals.join(' ').should == table.rows.flatten.join(' ')
end

Then /^the locale should should have (\d+) terms$/ do |num|
	@csl.terms.length.should == num.to_i
end

Then /^the (\w+[\?!]?) of the term "([^"]*)" should be "([^"]*)"$/ do |method, name, expected|
	@csl.terms.detect { |t| t.name == name }.send(method).should == expected
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
csl-1.0.0.pre12 features/step_definitions/locale_steps.rb
csl-1.0.0.pre11 features/step_definitions/locale_steps.rb
csl-1.0.0.pre10 features/step_definitions/locale_steps.rb
csl-1.0.0.pre9 features/step_definitions/locale_steps.rb
csl-1.0.0.pre8 features/step_definitions/locale_steps.rb
csl-1.0.0.pre7 features/step_definitions/locale_steps.rb
csl-1.0.0.pre6 features/step_definitions/locale_steps.rb
csl-1.0.0.pre5 features/step_definitions/locale_steps.rb
csl-1.0.0.pre4 features/step_definitions/locale_steps.rb
csl-1.0.0.pre3 features/step_definitions/locale_steps.rb
csl-1.0.0.pre2 features/step_definitions/locale_steps.rb
csl-1.0.0.pre1 features/step_definitions/locale_steps.rb