Sha256: 0c2327b04d1d3e7419d9ed115a42fce54c82fcd55bd563ce3189aa32cac6088b
Contents?: true
Size: 513 Bytes
Versions: 1
Compression:
Stored size: 513 Bytes
Contents
require 'rspec' require 'allure_turnip' require 'nokogiri' require 'turnip' Dir.glob("spec/steps/**/*steps.rb") { |f| load f, true } RSpec.configure do |c| c.include AllureTurnip::Adaptor c.before(:suite) do puts 'Before Suite Spec helper' end c.before(:all) do puts 'Before all Spec helper' end end AllureTurnip.configure do |c| c.output_dir = "allure" c.feature_with_filename = true c.tms_prefix = '@TEST-' c.issue_prefix = '@JIRA:' c.severity_prefix = '@PRIORITY:' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
allure_turnip-0.4.0 | spec/spec_helper.rb |