Sha256: 68e84827ab6f912b5f4dd986d1c6a508df5cb991d2e1cbbd9cb9c6a38a9a697a

Contents?: true

Size: 492 Bytes

Versions: 3

Compression:

Stored size: 492 Bytes

Contents

unless RUBY_VERSION.to_s < '1.9.0'
  require 'simplecov'
  SimpleCov.command_name('cuke_cataloger-cucumber')
end

here = File.dirname(__FILE__)
require "#{here}/../../file_helper"

require 'cuke_cataloger'


RSpec.configure do |config|
  config.before(:all) do
    @lib_directory = "#{here}/../../../lib"
  end

  config.after(:all) do
    CukeCataloger::FileHelper.created_directories.each do |dir_path|
      FileUtils.remove_entry(dir_path, true)
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cuke_cataloger-1.6.0 testing/rspec/spec/spec_helper.rb
cuke_cataloger-1.5.0 testing/rspec/spec/spec_helper.rb
cuke_cataloger-1.4.1 testing/rspec/spec/spec_helper.rb