You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

console_counts_spec.rb 335 B

2 years ago
1234567891011121314
  1. require 'cucumber/configuration'
  2. require 'cucumber/formatter/console_counts'
  3. module Cucumber
  4. module Formatter
  5. describe ConsoleCounts do
  6. it 'works for zero' do
  7. config = Configuration.new
  8. counts = ConsoleCounts.new(config)
  9. expect(counts.to_s).to eq "0 scenarios\n0 steps"
  10. end
  11. end
  12. end
  13. end

No Description

Contributors (1)