require_relative 'support/unit/load_environment' require 'rspec/rails' require 'rspec/matchers/fail_matchers' require 'shoulda-matchers' require 'spec_helper' $VERBOSE = true Dir[File.join(File.expand_path('support/unit/**/*.rb', __dir__))].sort.each do |file| require file end RSpec.configure do |config| config.include RSpec::Matchers::FailMatchers UnitTests::ActionPackVersions.configure_example_group(config) UnitTests::ActiveModelHelpers.configure_example_group(config) UnitTests::ActiveModelVersions.configure_example_group(config) UnitTests::ClassBuilder.configure_example_group(config) UnitTests::ControllerBuilder.configure_example_group(config) UnitTests::I18nFaker.configure_example_group(config) UnitTests::MailerBuilder.configure_example_group(config) UnitTests::ModelBuilder.configure_example_group(config) UnitTests::RailsVersions.configure_example_group(config) UnitTests::ActiveRecordVersions.configure_example_group(config) UnitTests::ActiveModelVersions.configure_example_group(config) UnitTests::DatabaseHelpers.configure_example_group(config) UnitTests::ColumnTypeHelpers.configure_example_group(config) UnitTests::ValidationMatcherScenarioHelpers.configure_example_group(config) UnitTests::MessageHelpers.configure_example_group(config) config.include UnitTests::Matchers config.infer_spec_type_from_file_location! config.example_status_persistence_file_path = 'spec/examples.txt' config.alias_it_behaves_like_to(:it_supports, 'it supports') config.before(:all, type: :controller) do self.class.controller(ApplicationController) { } end config.before(:suite) do I18n.backend.send(:init_translations) end end ActiveSupport::Deprecation.behavior = :stderr Shoulda::Matchers.configure do |config| config.integrate do |with| with.test_framework :rspec with.library :rails end end