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.

junit_steps.rb 249 B

2 years ago
123456
  1. Then('the junit output file {string} should contain:') do |actual_file, text|
  2. actual = IO.read("#{File.expand_path('.')}/#{actual_file}")
  3. actual = remove_self_ref(replace_junit_time(actual))
  4. expect(actual).to be_similar_output_than(text)
  5. end

No Description

Contributors (1)