Sha256: 51e25371d42ce46fd02b473b23b74b2fd5b67e5ff44ddabf3487ef245a0718ac

Contents?: true

Size: 304 Bytes

Versions: 2

Compression:

Stored size: 304 Bytes

Contents

require 'rspec'
require 'allure-rspec'
require 'nokogiri'

RSpec.configure do |c|
  c.include AllureRSpec::Adaptor

  c.before(:suite) do
    puts 'Before Suite Spec helper'
  end

  c.before(:all) do
    puts 'Before all Spec helper'
  end
end

AllureRSpec.configure do |c|
  c.output_dir = "allure"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
allure-rspec-0.7.3 spec/spec_helper.rb
allure-rspec-0.7.1 spec/spec_helper.rb