Skip to content

Commit 75b0a1b

Browse files
author
remi Taylor
committed
s/RSpec.describe/describe/g
1 parent cd255f2 commit 75b0a1b

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

appengine/analytics/spec/google_analytics_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "Google Analytics on Google App Engine", type: :feature do
22+
describe "Google Analytics on Google App Engine", type: :feature do
2323
before :all do
2424
@url = E2E.url
2525
end

appengine/cloudsql/spec/end_to_end_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "Cloud SQL on Google App Engine", type: :feature do
22+
describe "Cloud SQL on Google App Engine", type: :feature do
2323
before :all do
2424
skip "End-to-end tests skipped" unless E2E.run?
2525

appengine/datastore/spec/datastore_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
require "rspec"
1717
require "net/http"
1818

19-
RSpec.describe "Datastore E2E test" do
19+
describe "Datastore E2E test" do
2020
before do
2121
@url = E2E.url
2222
end

appengine/endpoints/spec/endpoint_sample_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require "rspec"
44
require "rack/test"
55

6-
RSpec.describe "Ruby Endpoints Sample" do
6+
describe "Ruby Endpoints Sample" do
77
include Rack::Test::Methods
88

99
attr_reader :app

appengine/hello_world/spec/hello_world_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
require "rspec"
1717
require "net/http"
1818

19-
RSpec.describe "Hello World E2E test" do
19+
describe "Hello World E2E test" do
2020
before do
2121
@url = E2E.url
2222
end

appengine/mailgun/spec/mailgun_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "MailGun on Google App Engine", type: :feature do
22+
describe "MailGun on Google App Engine", type: :feature do
2323
before :all do
2424
@url = E2E.url
2525
end

appengine/memcache/spec/memcache_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "Memcached on Google App Engine", type: :feature do
22+
describe "Memcached on Google App Engine", type: :feature do
2323
before :all do
2424
@url = E2E.url
2525
end

appengine/metadata_server/spec/metadata_server_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "Metadata server on Google App Engine", type: :feature do
22+
describe "Metadata server on Google App Engine", type: :feature do
2323
before :all do
2424
@url = E2E.url
2525
end

appengine/pubsub/spec/pubsub_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
require "net/http"
1818
require "google/cloud"
1919

20-
RSpec.describe "PubSub E2E test" do
20+
describe "PubSub E2E test" do
2121
before :all do
2222
@topic_name = "flexible-topic"
2323

appengine/sendgrid/spec/sendgrid_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Capybara.current_driver = :poltergeist
2121

22-
RSpec.describe "SendGrid on Google App Engine", type: :feature do
22+
describe "SendGrid on Google App Engine", type: :feature do
2323
before :all do
2424
@url = E2E.url
2525
end

0 commit comments

Comments
 (0)