spec/spec_helper.rb in geopolitical-0.8.1 vs spec/spec_helper.rb in geopolitical-0.8.2
- old
+ new
@@ -1,25 +1,25 @@
# This file is copied to spec/ when you run 'rails generate rspec:install'
-ENV["RAILS_ENV"] ||= 'test'
-require File.expand_path("../dummy/config/environment", __FILE__)
+ENV['RAILS_ENV'] ||= 'test'
+require File.expand_path('../dummy/config/environment', __FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'faker'
require 'fabrication'
require 'fabrication/syntax/make'
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
-Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
+Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
# Checks for pending migrations before tests are run.
# If you are not using ActiveRecord, you can remove this line.
ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
Fabrication.configure do |config|
- #config.fabricator_path = 'data/fabricators'
- config.path_prefix = Rails.root.join("../../")
+ # config.fabricator_path = 'data/fabricators'
+ config.path_prefix = Rails.root.join('../../')
end
RSpec.configure do |config|
# ## Mock Framework
#
@@ -48,7 +48,7 @@
# Run specs in random order to surface order dependencies. If you find an
# order dependency and want to debug it, you can fix the order by providing
# the seed, which is printed after each run.
# --seed 1234
- config.order = "random"
+ config.order = 'random'
end