mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
878e9582e1
In order to write tests for the `word_wrap` method we have, we need a spec helper that we can require. We don't need anything fancy. The doublespeak_spec_helper is doing most of what we want except for the Doublespeak require.
58 lines
1.7 KiB
Ruby
58 lines
1.7 KiB
Ruby
require_relative 'support/tests/current_bundle'
|
|
|
|
Tests::CurrentBundle.instance.assert_appraisal!
|
|
|
|
#---
|
|
|
|
require File.expand_path('../support/unit/rails_application', __FILE__)
|
|
|
|
$test_app = UnitTests::RailsApplication.new
|
|
$test_app.create
|
|
$test_app.load
|
|
|
|
ENV['BUNDLE_GEMFILE'] ||= app.gemfile_path
|
|
ENV['RAILS_ENV'] = 'test'
|
|
|
|
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|
|
|
if config.respond_to?(:infer_spec_type_from_file_location!)
|
|
config.infer_spec_type_from_file_location!
|
|
end
|
|
|
|
config.before(:all, type: :controller) do
|
|
self.class.controller(ApplicationController) { }
|
|
end
|
|
|
|
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
|
|
end
|
|
|
|
ActiveSupport::Deprecation.behavior = :stderr
|
|
|
|
Shoulda::Matchers.configure do |config|
|
|
config.integrate do |with|
|
|
with.test_framework :rspec
|
|
with.library :rails
|
|
end
|
|
end
|