1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Rename testing class to fit filename

`TestFogXMLConnection` didn't really match with the file name of
`test/fog/xml/connection_test.rb` due to the namespacing and placement
of "Test"
This commit is contained in:
Paul Thornthwaite 2014-03-12 16:07:48 +00:00
parent 37cd5d6b06
commit 3763ea8907

View file

@ -2,7 +2,7 @@ require "minitest/autorun"
require "fog"
# Note this is going to be part of fog-xml eventually
class TestFogXMLConnection < Minitest::Test
class Fog::XML::ConnectionTest < Minitest::Test
def setup
@connection = Fog::XML::Connection.new("http://localhost")
end