mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
d902b72d15
Oftentimes our shared example groups represent tests for qualifiers. It's more natural to say "it supports ignoring_interference_by_writer" instead of "it behaves like it supports ignoring_interference_by_writer".
45 lines
1.5 KiB
Ruby
45 lines
1.5 KiB
Ruby
require_relative 'support/unit/load_environment'
|
|
|
|
require 'rspec/rails'
|
|
require 'shoulda-matchers'
|
|
|
|
require 'spec_helper'
|
|
|
|
Dir[ File.join(File.expand_path('../support/unit/**/*.rb', __FILE__)) ].sort.each do |file|
|
|
require file
|
|
end
|
|
|
|
RSpec.configure do |config|
|
|
UnitTests::ActiveModelHelpers.configure_example_group(config)
|
|
UnitTests::ActiveModelVersions.configure_example_group(config)
|
|
UnitTests::ActiveResourceBuilder.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)
|
|
|
|
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
|
|
end
|
|
|
|
ActiveSupport::Deprecation.behavior = :stderr
|
|
|
|
Shoulda::Matchers.configure do |config|
|
|
config.integrate do |with|
|
|
with.test_framework :rspec
|
|
with.library :rails
|
|
end
|
|
end
|