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

Use Minitest::Test instead of MiniTest::Test #606

Merged
merged 1 commit into from
Oct 29, 2023
Merged
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
2 changes: 1 addition & 1 deletion test/helpers/integration_test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
RETRIABLE_TRIES = 3
RETRIABLE_BASE_INTERVAL = 50

class FogIntegrationTest < MiniTest::Test
class FogIntegrationTest < Minitest::Test
def namespaced_name
"#{self.class}_#{name}"
end
Expand Down
2 changes: 1 addition & 1 deletion test/unit/compute/test_common_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestCollections < MiniTest::Test
class UnitTestCollections < Minitest::Test
def setup
Fog.mock!

Expand Down
2 changes: 1 addition & 1 deletion test/unit/compute/test_common_models.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestModels < MiniTest::Test
class UnitTestModels < Minitest::Test
def setup
Fog.mock!
@client = Fog::Compute.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/compute/test_server.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestServer < MiniTest::Test
class UnitTestServer < Minitest::Test
def setup
Fog.mock!
@client = Fog::Compute.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/dns/test_common_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestDNSCollections < MiniTest::Test
class UnitTestDNSCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::DNS.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/monitoring/test_comon_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestMonitoringCollections < MiniTest::Test
class UnitTestMonitoringCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::Monitoring.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/pubsub/test_common_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestPubsubCollections < MiniTest::Test
class UnitTestPubsubCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::Google::Pubsub.new(google_project: "foo")
Expand Down
2 changes: 1 addition & 1 deletion test/unit/sql/test_common_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestSQLCollections < MiniTest::Test
class UnitTestSQLCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::Google::SQL.new(google_project: "foo")
Expand Down
2 changes: 1 addition & 1 deletion test/unit/storage/test_common_json_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestStorageJSONCollections < MiniTest::Test
class UnitTestStorageJSONCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::Storage.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/storage/test_common_xml_collections.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestStorageXMLCollections < MiniTest::Test
class UnitTestStorageXMLCollections < Minitest::Test
def setup
Fog.mock!
@client = Fog::Storage.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/storage/test_json_requests.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestJsonRequests < MiniTest::Test
class UnitTestJsonRequests < Minitest::Test
def setup
Fog.mock!
@client = Fog::Storage.new(provider: "google",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/storage/test_xml_requests.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "helpers/test_helper"

class UnitTestXMLRequests < MiniTest::Test
class UnitTestXMLRequests < Minitest::Test
def setup
Fog.mock!
@client = Fog::Storage.new(provider: "google",
Expand Down