require 'bundler' Bundler.require(:default, :development) ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => ':memory:') DatabaseCleaner.strategy = :transaction require 'spec/data/schema' require 'spec/data/models' RSpec.configure do |config| config.before do I18n.locale = :ru I18n.default_locale = :ru DatabaseCleaner.start end config.after do DatabaseCleaner.clean end config.mock_with :rspec end RSpec::Matchers.define :have_translation do |locale| match do |record| !record.translation_helper.find_translation_by_locale(locale).nil? end end RSpec::Matchers.define :have_translated_attribute do |locale, attribute, value| match do |record| record.translation_helper.find_translation_by_locale(locale).send(attribute) == value end end