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.

cucumber_cli_steps.rb 348 B

2 years ago
12345678910
  1. Then('I should see the CLI help') do
  2. expect(command_line.stdout).to include('Usage:')
  3. end
  4. Then('cucumber lists all the supported languages') do
  5. sample_languages = %w[Arabic български Pirate English 日本語]
  6. sample_languages.each do |language|
  7. expect(command_line.stdout.force_encoding('utf-8')).to include(language)
  8. end
  9. end

No Description

Contributors (1)