Sha256: a6c02d8a073325abef1ca40da8f7117b7fb433a2d1c16ff742bc92d3ef0e0bd7
Contents?: true
Size: 470 Bytes
Versions: 3
Compression:
Stored size: 470 Bytes
Contents
require 'rubygems' require 'bundler/setup' Bundler.require(:default) require 'pry' require 'chartio/test_formatter' lib = File.expand_path('../spec', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) RSpec.configure do |config| config.before(:suite) do ActiveRecord::Base.establish_connection({ :adapter => 'sqlite3', :database => ':memory:' }) load File.dirname(__FILE__) + '/schema.rb' require "example_app" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
chartio-rails-0.1.0 | spec/spec_helper.rb |
chartio-rails-0.0.2 | spec/spec_helper.rb |
chartio-rails-0.0.1 | spec/spec_helper.rb |