Sha256: 0e79b04bc373d8f3832936f1e108bf20b9a9140458807d5e72b18254fd686085

Contents?: true

Size: 722 Bytes

Versions: 8

Compression:

Stored size: 722 Bytes

Contents

ENV["RAILS_ENV"] = "test"

require "rspec"
require "byebug"

require File.expand_path("../../spec/dummy/config/environment.rb",  __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../spec/dummy/db/migrate", __FILE__)]

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

# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
  ActiveSupport::TestCase.fixtures :all
end

require 'securerandom'
require 'stringio'
require 'paul_bunyan'

RSpec.configure do |config|
  config.color = true
  config.include NotificationHelpers
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
paul_bunyan-2.1.0 spec/spec_helper.rb
paul_bunyan-2.0.0 spec/spec_helper.rb
paul_bunyan-1.6.0 spec/spec_helper.rb
paul_bunyan-1.5.3 spec/spec_helper.rb
paul_bunyan-1.5.2 spec/spec_helper.rb
paul_bunyan-1.5.1 spec/spec_helper.rb
paul_bunyan-1.5.0 spec/spec_helper.rb
paul_bunyan-1.4.0 spec/spec_helper.rb