Use non-monkey patch describe in generators.

The default Rails spec generators should not use the monkey patched version of
describe. (https://github.com/rspec/rspec-rails/pull/1052)
This commit is contained in:
Andrea Dal Ponte 2016-10-17 16:57:52 +02:00 committed by GitHub
parent 45e18569d9
commit c9206938e8
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
require 'rails_helper'
describe <%= class_name %>Decorator do
RSpec.describe <%= class_name %>Decorator do
end