diff --git a/.rspec b/.rspec deleted file mode 100644 index d72f9515..00000000 --- a/.rspec +++ /dev/null @@ -1,3 +0,0 @@ ---color --r spec_helper --f documentation diff --git a/spec/controllers/locales_controller_spec.rb b/spec/controllers/locales_controller_spec.rb index bb3f4b9c..8a346383 100644 --- a/spec/controllers/locales_controller_spec.rb +++ b/spec/controllers/locales_controller_spec.rb @@ -1,3 +1,5 @@ +require 'spec_helper' + RSpec.describe Spree::HomeController, type: :controller do routes { Spree::Core::Engine.routes } diff --git a/spec/features/admin/translations_spec.rb b/spec/features/admin/translations_spec.rb index ea62b7fe..4915ca65 100644 --- a/spec/features/admin/translations_spec.rb +++ b/spec/features/admin/translations_spec.rb @@ -1,3 +1,5 @@ +require 'spec_helper' + RSpec.feature 'Translations', :js do stub_authorization! diff --git a/spec/features/russian_errors_translation_spec.rb b/spec/features/russian_errors_translation_spec.rb index e560f093..f4784569 100644 --- a/spec/features/russian_errors_translation_spec.rb +++ b/spec/features/russian_errors_translation_spec.rb @@ -1,4 +1,5 @@ # encoding: utf-8 +require 'spec_helper' RSpec.describe 'Russian errors translations' do def translation(count) diff --git a/spec/features/translation_spec.rb b/spec/features/translation_spec.rb index d9ce87ee..00adbe84 100644 --- a/spec/features/translation_spec.rb +++ b/spec/features/translation_spec.rb @@ -1,4 +1,5 @@ # encoding: utf-8 +require 'spec_helper' RSpec.describe 'Translation' do def translation diff --git a/spec/features/translations_spec.rb b/spec/features/translations_spec.rb index 675d0674..dd9a4832 100644 --- a/spec/features/translations_spec.rb +++ b/spec/features/translations_spec.rb @@ -1,4 +1,6 @@ # encoding: utf-8 +require 'spec_helper' + RSpec.feature 'Translations', :js do given(:language) { Spree.t(:this_file_language, scope: 'i18n', locale: 'pt-BR') }