embedded_localization 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/spec/spec_helper.rb DELETED
@@ -1,25 +0,0 @@
1
- require 'active_record'
2
- require 'i18n'
3
-
4
- require 'embedded_localization'
5
-
6
- ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:"
7
-
8
- load File.dirname(__FILE__) + '/schema.rb'
9
- require File.dirname(__FILE__) + '/models.rb'
10
-
11
-
12
- I18n.enforce_available_locales = false
13
- I18n.config.available_locales = [:ru,:jp,:ko,:fr,:en,:de]
14
-
15
- RSpec.configure do |config|
16
- config.expect_with :rspec do |expectations|
17
- expectations.syntax = :should
18
- end
19
- config.mock_with :rspec do |mocks|
20
- mocks.syntax = :should
21
- end
22
-
23
- config.filter_run_including :focus => true
24
- config.run_all_when_everything_filtered = true
25
- end