Sha256: 37fc502b0df5f47c2fae2f353cea1683c00fb6dab46d5a6a6bb61d86786ce2cb

Contents?: true

Size: 634 Bytes

Versions: 8

Compression:

Stored size: 634 Bytes

Contents

require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

require 'factory_girl'

ENV["RAILS_ENV"] ||= 'test'
require File.expand_path(File.dirname(__FILE__) + "/../fixture_rails_root/config/environment")
require Rails.root.join('db/schema').to_s
require 'rspec/rails'

$: << File.expand_path(File.dirname(__FILE__) + '/../lib/')
require 'esa'

Dir[File.expand_path(File.join(File.dirname(__FILE__),'factories','**','*.rb'))].each {|f| require f}
Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}

RSpec.configure do |config|
  config.use_transactional_fixtures = true
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
event_sourced_accounting-0.2.6 spec/spec_helper.rb
event_sourced_accounting-0.2.4 spec/spec_helper.rb
event_sourced_accounting-0.2.3 spec/spec_helper.rb
event_sourced_accounting-0.2.2 spec/spec_helper.rb
event_sourced_accounting-0.1.6 spec/spec_helper.rb
event_sourced_accounting-0.1.4 spec/spec_helper.rb
event_sourced_accounting-0.1.3 spec/spec_helper.rb
event_sourced_accounting-0.1.1 spec/spec_helper.rb