public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
Search Repo:
Fixing.
tapajos (author)
Thu May 08 18:03:46 -0700 2008
francois (committer)
Fri May 09 08:25:33 -0700 2008
commit  6fe71c29c1741cb0ff17903ddc4d8b8a020a3b2f
tree    fe11dea883cd61142f5b679e6ae001c6d96a8da3
parent  70813e04ba0b01274987276fe71b76a30ed5f835
...
14
15
16
17
18
19
20
21
22
23
...
14
15
16
 
 
 
 
17
18
19
0
@@ -14,10 +14,6 @@
0
       @repository, @revision = repository, revision
0
     end
0
     
0
- def ==(other)
0
- revision == other.revision && repository == other.repository
0
- end
0
-
0
     def name
0
       @revision
0
     end
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 require File.dirname(__FILE__) + "/../test_helper"
0
 
0
-class TestImport < Test::Unit::TestCase
0
+class TestLock < Test::Unit::TestCase
0
   
0
   def setup
0
     @values_mock = {:lock => "false", "handler" => { :repository => "repository" }}
...
63
64
65
66
 
 
 
67
68
69
...
63
64
65
 
66
67
68
69
70
71
0
@@ -63,7 +63,9 @@
0
   end
0
   
0
   def test_at
0
- assert_equal Piston::Revision.new(@repository, "2"), @repository.at("2")
0
+ revision = @repository.at("2")
0
+ assert_equal @repository, revision.repository
0
+ assert_equal "2", revision.revision
0
   end
0
   
0
   def test_to_s

Comments

    No one has commented yet.