##// END OF EJS Templates
Slight non-code change to test git sync...
Eric Davis -
r1918:0092a54e3bb3
parent child
Show More
@@ -1,45 +1,46
1 1 Creating test repositories
2 2 ===================
3 3
4 4 mkdir tmp/test
5 5
6 6 Subversion
7 7 ----------
8 8 svnadmin create tmp/test/subversion_repository
9 9 gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load tmp/test/subversion_repository
10 10
11 11 CVS
12 12 ---
13 13 gunzip < test/fixtures/repositories/cvs_repository.tar.gz | tar -xv -C tmp/test
14 14
15 15 Bazaar
16 16 ------
17 17 gunzip < test/fixtures/repositories/bazaar_repository.tar.gz | tar -xv -C tmp/test
18 18
19 19 Mercurial
20 20 ---------
21 21 gunzip < test/fixtures/repositories/mercurial_repository.tar.gz | tar -xv -C tmp/test
22 22
23 23 Git
24 24 ---
25 25 gunzip < test/fixtures/repositories/git_repository.tar.gz | tar -xv -C tmp/test
26 26
27 27 Darcs (2.0+ required)
28 28 ---------------------
29 29 gunzip < test/fixtures/repositories/darcs_repository.tar.gz | tar -xv -C tmp/test
30 30
31 31 FileSystem
32 32 ----------
33 33 gunzip < test/fixtures/repositories/filesystem_repository.tar.gz | tar -xv -C tmp/test
34 34
35 35
36 36 Running Tests
37 37 =============
38 38
39 39 Run
40 40
41 41 rake --tasks | grep test
42 42
43 43 to see available tests.
44 44
45 45 RAILS_ENV=test rake test will run tests.
46
General Comments 0
You need to be logged in to leave comments. Login now