forked from consuldemocracy/consuldemocracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
customization_engine_spec.rb
39 lines (31 loc) · 1.14 KB
/
customization_engine_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require "rails_helper"
# This module tests functionality related with custom application files
# TODO test models, controllers, etc...
describe "Customization Engine" do
let(:test_key) { I18n.t("account.show.change_credentials_link") }
let!(:default_path) { I18n.load_path }
before do
reset_load_path_and_reload(default_path)
end
after do
reset_load_path_and_reload(default_path)
end
it "loads custom and override original locales" do
increase_load_path_and_reload(Dir[Rails.root.join("spec", "support",
"locales", "custom", "*.{rb,yml}")])
expect(test_key).to eq "Overriden string with custom locales"
end
it "does not override original locales" do
increase_load_path_and_reload(Dir[Rails.root.join("spec", "support",
"locales", "*.{rb,yml}")])
expect(test_key).to eq "Not overriden string with custom locales"
end
def reset_load_path_and_reload(path)
I18n.load_path = path
I18n.reload!
end
def increase_load_path_and_reload(path)
I18n.load_path += path
I18n.reload!
end
end