Sha256: 9ecb1410686fc9847252865efce96c6148ca7410cbed0222a71463c0c313f0d1

Contents?: true

Size: 849 Bytes

Versions: 6

Compression:

Stored size: 849 Bytes

Contents

IMW_ROOT_DIR = File.join(File.expand_path(File.dirname(__FILE__)), '..') unless defined? IMW_ROOT_DIR
IMW_SPEC_DIR = File.join(IMW_ROOT_DIR, 'spec')                           unless defined? IMW_SPEC_DIR
IMW_LIB_DIR  = File.join(IMW_ROOT_DIR, 'lib')                            unless defined? IMW_LIB_DIR
$: << IMW_LIB_DIR

require 'rubygems'
require 'spec'
require 'imw'

Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |path| require path }

module IMWTest
  TMP_DIR   = "/tmp/imwtest" unless defined?(TMP_DIR)
  DATA_DIR  = File.join(IMW_SPEC_DIR, 'data') unless defined?(DATA_DIR)
end

Spec::Runner.configure do |config|

  config.include IMWTest::CustomMatchers
  
  config.before do
    FileUtils.mkdir_p IMWTest::TMP_DIR
    FileUtils.cd IMWTest::TMP_DIR
  end
  
  config.after do
    FileUtils.rm_rf IMWTest::TMP_DIR
  end
end

  

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
imw-0.2.7 spec/spec_helper.rb
imw-0.2.6 spec/spec_helper.rb
imw-0.2.5 spec/spec_helper.rb
imw-0.2.4 spec/spec_helper.rb
imw-0.2.3 spec/spec_helper.rb
imw-0.2.2 spec/spec_helper.rb