Sha256: bb700359d8878d817f7a5bc8683d93307cd20c40beb5a0b79e0ad4af5441af36
Contents?: true
Size: 416 Bytes
Versions: 2
Compression:
Stored size: 416 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 end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
allure_turnip-0.1.1 | spec/spec_helper.rb |
allure_turnip-0.1.0 | spec/spec_helper.rb |