mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
fcf4a6df92
[ci skip]
60 lines
2 KiB
Ruby
60 lines
2 KiB
Ruby
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', __FILE__)) ].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)
|
|
|
|
if UnitTests::RailsVersions.rails_lte_4?
|
|
UnitTests::ActiveResourceBuilder.configure_example_group(config)
|
|
end
|
|
|
|
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
|