<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/test_connection.rb</filename>
    </added>
    <added>
      <filename>test/test_helper.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,3 @@
 pkg/*
 doc/*
-
+coverage/*</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -21,8 +21,8 @@ Gem::Specification.new do |s|
   # get this easily and accurately by running 'Dir.glob(&quot;{lib,test}/**/*&quot;)'
   # in an IRB session.  However, GitHub won't allow that command hence
   # we spell it out.
-  s.files = [&quot;README.rdoc&quot;, &quot;LICENSE&quot;, &quot;CHANGELOG&quot;, &quot;Rakefile&quot;, &quot;lib/stomp.rb&quot;, &quot;lib/stomp/client.rb&quot;, &quot;lib/stomp/connection.rb&quot;, &quot;lib/stomp/message.rb&quot;, &quot;test/test_client.rb&quot;, &quot;test/test_stomp.rb&quot;, &quot;test/test_url_connections.rb&quot;, &quot;test/test_url_connections_noauth.rb&quot;]
-  s.test_files = [&quot;test/test_client.rb&quot;, &quot;test/test_stomp.rb&quot;, &quot;test/test_url_connections.rb&quot;, &quot;test/test_url_connections_noauth.rb&quot;]
+  s.files = [&quot;README.rdoc&quot;, &quot;LICENSE&quot;, &quot;CHANGELOG&quot;, &quot;Rakefile&quot;, &quot;lib/stomp.rb&quot;, &quot;lib/stomp/client.rb&quot;, &quot;lib/stomp/connection.rb&quot;, &quot;lib/stomp/message.rb&quot;, &quot;test/test_client.rb&quot;, &quot;test/test_connection.rb&quot;, &quot;test/test_helper.rb&quot;, &quot;test/test_url_connections.rb&quot;, &quot;test/test_url_connections_noauth.rb&quot;]
+  s.test_files = [&quot;test/test_client.rb&quot;, &quot;test/test_connection.rb&quot;, &quot;test/test_helper.rb&quot;, &quot;test/test_url_connections.rb&quot;, &quot;test/test_url_connections_noauth.rb&quot;]
 
   s.has_rdoc = true
   s.rdoc_options = [&quot;--quiet&quot;, &quot;--title&quot;, &quot;stomp documentation&quot;, &quot;--opname&quot;, &quot;index.html&quot;, &quot;--line-numbers&quot;, &quot;--main&quot;, &quot;README.rdoc&quot;, &quot;--inline-source&quot;]</diff>
      <filename>stomp.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,4 @@
-#   Copyright 2005-2006 Brian McCallister
-#
-#   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
-#   you may not use this file except in compliance with the License.
-#   You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-
-$:.unshift File.join(File.dirname(__FILE__), &quot;..&quot;, &quot;lib&quot;)
-require 'test/unit'
-require 'timeout'
-require 'stomp'
+require File.join(File.dirname(__FILE__), 'test_helper.rb')
 
 class TestClient &lt; Test::Unit::TestCase
 
@@ -194,4 +177,5 @@ class TestClient &lt; Test::Unit::TestCase
     @client.acknowledge message, :transaction =&gt; 'tx2'
     @client.commit 'tx2'
   end
+
 end</diff>
      <filename>test/test_client.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,4 @@
-#   Copyright 2005-2006 Brian McCallister
-#
-#   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
-#   you may not use this file except in compliance with the License.
-#   You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-
-$:.unshift File.join(File.dirname(__FILE__), &quot;..&quot;, &quot;lib&quot;)
-require 'test/unit'
-require 'timeout'
-require 'stomp'
+require File.join(File.dirname(__FILE__), 'test_helper.rb')
 
 class TestClient &lt; Test::Unit::TestCase
 
@@ -194,4 +177,5 @@ class TestClient &lt; Test::Unit::TestCase
     @client.acknowledge message, :transaction =&gt; 'tx2'
     @client.commit 'tx2'
   end
+
 end</diff>
      <filename>test/test_url_connections.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,4 @@
-#   Copyright 2005-2006 Brian McCallister
-#
-#   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
-#   you may not use this file except in compliance with the License.
-#   You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-
-$:.unshift File.join(File.dirname(__FILE__), &quot;..&quot;, &quot;lib&quot;)
-require 'test/unit'
-require 'timeout'
-require 'stomp'
+require File.join(File.dirname(__FILE__), 'test_helper.rb')
 
 class TestClient &lt; Test::Unit::TestCase
 
@@ -194,4 +177,5 @@ class TestClient &lt; Test::Unit::TestCase
     @client.acknowledge message, :transaction =&gt; 'tx2'
     @client.commit 'tx2'
   end
+
 end</diff>
      <filename>test/test_url_connections_noauth.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>test/test_stomp.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>0d5f2843c6a325851fe07276d1e60888ef0befb5</id>
    </parent>
  </parents>
  <author>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </author>
  <url>http://github.com/js/stomp/commit/2a42446d52c2206b82399c9c2b969b878fb347a4</url>
  <id>2a42446d52c2206b82399c9c2b969b878fb347a4</id>
  <committed-date>2008-05-08T18:20:11-07:00</committed-date>
  <authored-date>2008-05-08T18:14:33-07:00</authored-date>
  <message>DRY'ed up test dir with test_helper.rb file</message>
  <tree>a040db4846b452ad45e049257ce461f0a3002388</tree>
  <committer>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </committer>
</commit>
