Skip to content

Commit

Permalink
Merge pull request #606 from chubchenko/master
Browse files Browse the repository at this point in the history
Use `Minitest::Test` instead of `MiniTest::Test`
  • Loading branch information
Temikus committed Oct 29, 2023
2 parents bb70494 + eacb8da commit 2081621
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
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

0 comments on commit 2081621

Please sign in to comment.