<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Rakefile</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,7 @@
 require File.expand_path(File.join(File.dirname(__FILE__), '../spec_helper'))
 
 describe Garlic::Repo do
-  describe &quot;new(:url =&gt; 'some/url', :path =&gt; 'some/path')&quot; do
+  describe &quot;new(:url =&gt; 'some/local/repo', :path =&gt; 'some/dest')&quot; do
     before { @repo = Garlic::Repo.new(:url =&gt; 'some/local/repo', :path =&gt; 'some/dest') }
     
     it &quot;should expand the path&quot; do
@@ -17,10 +17,22 @@ describe Garlic::Repo do
     end
     
     describe '#install' do
+      before do
+        @repo.stub!(:puts) # silence!
+      end
+      
       it &quot;should 'git clone &lt;repo&gt; &lt;dest&gt;&quot; do
         @repo.should_receive(:sh).with(&quot;git clone #{@repo.url} #{@repo.path}&quot;)
         @repo.install
       end
     end
   end
+  
+  describe &quot;new(:url =&gt; 'git://remote/repo', :path =&gt; 'some/dest')&quot; do
+    before { @repo = Garlic::Repo.new(:url =&gt; 'git://remote/repo', :path =&gt; 'some/dest') }
+    
+    it &quot;should NOT expand the url&quot; do
+      @repo.url == 'git://remote/repo'
+    end
+  end
 end
\ No newline at end of file</diff>
      <filename>spec/garlic/repo_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>840fdd6396c58c189047c5bea305e81fbe8c3722</id>
    </parent>
  </parents>
  <author>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </author>
  <url>http://github.com/ianwhite/garlic/commit/ce59ab074f2ab4df56eeae8515eaa2ddbaeb1654</url>
  <id>ce59ab074f2ab4df56eeae8515eaa2ddbaeb1654</id>
  <committed-date>2008-04-26T11:08:51-07:00</committed-date>
  <authored-date>2008-04-26T11:08:51-07:00</authored-date>
  <message>Added rake tasks for specing garlic
Added some more tiny specs</message>
  <tree>36e55c1fd17900683539287072958b637cc96046</tree>
  <committer>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </committer>
</commit>
