Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reference to Timecop from spec_helper.rb #1155

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions spec/features/new_project_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,6 @@
expect(gemfile).to match(/sassc-rails/)
end

it "configures Timecop safe mode" do
spec_helper = read_project_file(%w[spec spec_helper.rb])
expect(spec_helper).to match(/Timecop.safe_mode = true/)
end

it "adds and configures a bundler strategy for css and js" do
gemfile = read_project_file("Gemfile")

Expand Down
4 changes: 0 additions & 4 deletions templates/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
require "webmock/rspec"
require "timecop"

# http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
Expand All @@ -20,6 +19,3 @@
allow_localhost: true,
allow: "chromedriver.storage.googleapis.com"
)

# Only allow Timecop with block syntax
Timecop.safe_mode = true
Loading