Sha256: 69ca6f695b4d8da156dad9887ae4c1004196575985df9129fb394a7d223b7552

Contents?: true

Size: 590 Bytes

Versions: 26

Compression:

Stored size: 590 Bytes

Contents

require 'tempfile'
require 'rspec'

RUBIX_ROOT = File.expand_path(__FILE__, '../../lib')
$: << RUBIX_ROOT unless $:.include?(RUBIX_ROOT)
require 'rubix'

Rubix.logger = false unless ENV["RUBIX_LOG_LEVEL"] || ENV["RUBIX_LOG_PATH"]

Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |path| require path }

RSpec.configure do |config|
  config.mock_with :rspec
  config.include Rubix::ResponseSpecs
  config.include Rubix::IntegrationHelper
  config.include Rubix::ConfigliereHelper

  Rubix::IntegrationHelper.setup_integration_tests(File.expand_path('../test.yml', __FILE__))
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
rubix-0.1.1 spec/spec_helper.rb
rubix-0.1.0 spec/spec_helper.rb
rubix-0.0.12 spec/spec_helper.rb
rubix-0.0.11 spec/spec_helper.rb
rubix-0.0.10 spec/spec_helper.rb
rubix-0.0.9 spec/spec_helper.rb