Sha256: fe945e6cfbee6ef1fd8bf04268da0b48395985573baba0e2878a5c7415153923
Contents?: true
Size: 840 Bytes
Versions: 2
Compression:
Stored size: 840 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 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
imw-0.2.1 | spec/spec_helper.rb |
imw-0.2.0 | spec/spec_helper.rb |