Skip to content

Commit ca158fc

Browse files
committed
Add missing RSpec references
1 parent f9e5f1b commit ca158fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spec/rspec/rails/example/channel_example_group_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require "rspec/rails/feature_check"
33

44
module RSpec::Rails
5-
describe ChannelExampleGroup do
5+
RSpec.describe ChannelExampleGroup do
66
if RSpec::Rails::FeatureCheck.has_action_cable_testing?
77
it_behaves_like "an rspec-rails example group mixin", :channel,
88
'./spec/channels/', '.\\spec\\channels\\'

spec/rspec/rails/example/helper_example_group_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require "spec_helper"
22

33
module RSpec::Rails
4-
describe HelperExampleGroup do
4+
RSpec.describe HelperExampleGroup do
55
module ::FoosHelper
66
class InternalClass
77
end

spec/rspec/rails/example/mailbox_example_group_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def receive(*)
1515

1616
module RSpec
1717
module Rails
18-
describe MailboxExampleGroup, :skip => !RSpec::Rails::FeatureCheck.has_action_mailbox? do
18+
RSpec.describe MailboxExampleGroup, :skip => !RSpec::Rails::FeatureCheck.has_action_mailbox? do
1919
it_behaves_like "an rspec-rails example group mixin", :mailbox,
2020
'./spec/mailboxes/', '.\\spec\\mailboxes\\'
2121

0 commit comments

Comments
 (0)