Sha256: 5d0720a738b844d6d9cc8ac3d97bcdc24c85e2db2487b029c86368a3151f5d3f

Contents?: true

Size: 510 Bytes

Versions: 29

Compression:

Stored size: 510 Bytes

Contents

When /^I load the style from the string$/ do |string|
  @csl = CSL::Style.load string
end

Then /^the locale (\d+) should should have (\d+) terms?$/ do |locale, term|
	@csl.locales[locale.to_i - 1].terms.length.should == term.to_i
end

Then /^the locale (\d+) (\w+\??) should be "([^"]*)"$/ do |locale, method, expected|
  @csl.locales[locale.to_i - 1].send(method).to_s.should == expected
end

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

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
csl-1.0.0.pre9 features/step_definitions/style_steps.rb
csl-1.0.0.pre8 features/step_definitions/style_steps.rb
csl-1.0.0.pre7 features/step_definitions/style_steps.rb
csl-1.0.0.pre6 features/step_definitions/style_steps.rb
csl-1.0.0.pre5 features/step_definitions/style_steps.rb
csl-1.0.0.pre4 features/step_definitions/style_steps.rb
csl-1.0.0.pre3 features/step_definitions/style_steps.rb
csl-1.0.0.pre2 features/step_definitions/style_steps.rb
csl-1.0.0.pre1 features/step_definitions/style_steps.rb