Sha256: ff017da4ca4bb92e60dbd5efa992c0bd206077cd92fe278752e5d930be3b2879
Contents?: true
Size: 483 Bytes
Versions: 4
Compression:
Stored size: 483 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 = '@HIPTEST--' c.issue_prefix = '@JIRA++' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
allure_turnip-0.3.1 | spec/spec_helper.rb |
allure_turnip-0.3.0 | spec/spec_helper.rb |
allure_turnip-0.2.1 | spec/spec_helper.rb |
allure_turnip-0.2.0 | spec/spec_helper.rb |