Sha256: 6224618f653c76ffe5b8485d39a9d77b88f494ec2e4898d0946d8a9bedaf98ea

Contents?: true

Size: 879 Bytes

Versions: 2

Compression:

Stored size: 879 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('..', '..', 'config', 'environment', __FILE__)

abort('The Rails is running in production mode!') if Rails.env.production?
require 'rspec/rails'

require 'shoulda'
require 'shoulda/matchers'
require 'faker'
require 'factory_bot'

Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f }

begin
  ActiveRecord::Migration.maintain_test_schema!
rescue ActiveRecord::PendingMigrationError => e
  puts e.to_s.strip
  exit 1
end
RSpec.configure do |config|
  config.fixture_path = "#{::Rails.root}/spec/fixtures"

  config.use_transactional_fixtures = false
  config.infer_spec_type_from_file_location!
  config.filter_rails_from_backtrace!

  config.include FactoryBot::Syntax::Methods
  # config.include Devise::Test::IntegrationHelpers, type: :request
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bankai-0.2.0 templates/rails_helper.rb
bankai-0.1.0 templates/rails_helper.rb