Enables RSpec/ExampleWording and fixes all issues
Both avoiding 'should' and repiting 'it' on the tests description improves reading them and also makes all descriptions consistent. Read about cop at http://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ExampleWording
This commit is contained in:
@@ -8,13 +8,13 @@ describe 'Customization Engine' do
|
||||
let(:test_key) { I18n.t('account.show.change_credentials_link') }
|
||||
let!(:default_path) { I18n.load_path }
|
||||
|
||||
it "should load custom and override original locales" do
|
||||
it "loads custom and override original locales" do
|
||||
I18n.load_path += Dir[Rails.root.join('spec', 'support', 'locales', 'custom', '*.{rb,yml}')]
|
||||
I18n.reload!
|
||||
expect(test_key).to eq 'Overriden string with custom locales'
|
||||
end
|
||||
|
||||
it "should not override original locales" do
|
||||
it "does not override original locales" do
|
||||
I18n.load_path.delete_if {|item| item =~ /spec\/support\/locales\/custom/ }
|
||||
I18n.load_path += Dir[Rails.root.join('spec', 'support', 'locales', '**', '*.{rb,yml}')]
|
||||
I18n.reload!
|
||||
|
||||
Reference in New Issue
Block a user