Sha256: e102282637b8431313f435583f7d9de196a8bce86edaad40a47361a488ec7633
Contents?: true
Size: 858 Bytes
Versions: 2
Compression:
Stored size: 858 Bytes
Contents
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../../spec/dummy/config/environment", __FILE__) require 'debugger' require 'gxapi' require 'rspec/rails' require 'capybara/rails' require 'rails/engine' require 'mocha/setup' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} Mocha::Configuration.prevent(:stubbing_non_existent_method) RSpec.configure do |config| config.mock_with :mocha config.treat_symbols_as_metadata_keys_with_true_values = true config.run_all_when_everything_filtered = true config.filter_run focus: true config.before(:all) do Gxapi.logger = Logger.new(STDOUT) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gxapi_rails-0.0.6 | spec/spec_helper.rb |
gxapi_rails-0.0.5 | spec/spec_helper.rb |