From 3763ea8907ddb43aa89c65eb9e77c2b74918fadc Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Wed, 12 Mar 2014 16:07:48 +0000 Subject: [PATCH] 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" --- test/fog/xml/connection_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fog/xml/connection_test.rb b/test/fog/xml/connection_test.rb index ba113d0fe..d3ee79d17 100644 --- a/test/fog/xml/connection_test.rb +++ b/test/fog/xml/connection_test.rb @@ -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