Sha256: 2b55e8359fcc1716853ebcf87f0efaa7e96d26645029701fbce60e9a0569e91d

Contents?: true

Size: 382 Bytes

Versions: 6

Compression:

Stored size: 382 Bytes

Contents

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

require 'tmpdir'

require 'cql'
require 'cql/model_dsl'


After do
  FileUtils.remove_dir(@temp_dir, true) if @temp_dir
end


def create_path(path)
  @temp_dir ||= Dir.mktmpdir
  path = path.sub('path/to/', "#{@temp_dir}/")

  Dir.mkdir(path)

  path
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cql-1.7.0 testing/cucumber/support/env.rb
cql-1.6.0 testing/cucumber/support/env.rb
cql-1.5.1 testing/cucumber/support/env.rb
cql-1.5.0 testing/cucumber/support/env.rb
cql-1.4.2 testing/cucumber/support/env.rb
cql-1.4.1 testing/cucumber/support/env.rb