mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
commit
ddb6467573
2 changed files with 13 additions and 20 deletions
|
@ -13,14 +13,6 @@ Style/CollectionMethods:
|
||||||
find: detect
|
find: detect
|
||||||
find_all: select
|
find_all: select
|
||||||
reduce: inject
|
reduce: inject
|
||||||
Style/DotPosition:
|
|
||||||
Description: Checks the position of the dot in multi-line method calls.
|
|
||||||
StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains
|
|
||||||
Enabled: true
|
|
||||||
EnforcedStyle: trailing
|
|
||||||
SupportedStyles:
|
|
||||||
- leading
|
|
||||||
- trailing
|
|
||||||
Style/FileName:
|
Style/FileName:
|
||||||
Description: Use snake_case for source file names.
|
Description: Use snake_case for source file names.
|
||||||
StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-files
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-files
|
||||||
|
|
25
spec/spec_helper.rb
Normal file → Executable file
25
spec/spec_helper.rb
Normal file → Executable file
|
@ -1,20 +1,21 @@
|
||||||
ENV["RAILS_ENV"] ||= 'test'
|
ENV["RAILS_ENV"] ||= "test"
|
||||||
|
|
||||||
require 'codeclimate-test-reporter'
|
require "codeclimate-test-reporter"
|
||||||
require 'simplecov'
|
require "simplecov"
|
||||||
CodeClimate::TestReporter.start
|
CodeClimate::TestReporter.start
|
||||||
SimpleCov.start 'rails'
|
SimpleCov.start "rails"
|
||||||
|
|
||||||
require File.expand_path("../../config/environment", __FILE__)
|
require File.expand_path("../../config/environment", __FILE__)
|
||||||
require 'rspec/rails'
|
require "rspec/rails"
|
||||||
require 'capybara/rspec'
|
require "capybara/rspec"
|
||||||
require 'capybara/poltergeist'
|
require "capybara/poltergeist"
|
||||||
|
|
||||||
Capybara.default_wait_time = 5
|
Capybara.default_wait_time = 5
|
||||||
Capybara.register_driver :poltergeist do |app|
|
Capybara.register_driver :poltergeist do |app|
|
||||||
Capybara::Poltergeist::Driver.new(app,
|
Capybara::Poltergeist::Driver.new(
|
||||||
|
app,
|
||||||
timeout: 30,
|
timeout: 30,
|
||||||
phantomjs_logger: File.open('/dev/null')
|
phantomjs_logger: File.open("/dev/null")
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -30,16 +31,16 @@ RSpec.configure do |config|
|
||||||
config.include Features::SessionHelpers, type: :feature
|
config.include Features::SessionHelpers, type: :feature
|
||||||
|
|
||||||
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
||||||
config.order = 'random'
|
config.order = "random"
|
||||||
config.use_transactional_fixtures = false
|
config.use_transactional_fixtures = false
|
||||||
config.color = true
|
config.color = true
|
||||||
config.formatter = :documentation
|
config.formatter = :documentation
|
||||||
config.infer_spec_type_from_file_location!
|
config.infer_spec_type_from_file_location!
|
||||||
|
|
||||||
config.before(:each) do
|
config.before(:each) do
|
||||||
events_list_json = JSON.parse(File.read(Rails.root.join('spec/fixtures/google_calendar.json')))
|
events_list_json = JSON.parse(File.read(Rails.root.join("spec/fixtures/google_calendar.json")))
|
||||||
|
|
||||||
GoogleCalendar::Request.stub(:events_list) do
|
allow(GoogleCalendar::Request).to receive(:events_list) do
|
||||||
GoogleCalendar::EventList.new(events_list_json, Time.zone.name)
|
GoogleCalendar::EventList.new(events_list_json, Time.zone.name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue