##// END OF EJS Templates
tagged version 0.8.5...
tagged version 0.8.5 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/0.8.5@2886 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1918:0092a54e3bb3
r2772:0bdef7d79741 0.8.5
Show More
RUNNING_TESTS
46 lines | 998 B | text/plain | TextLexer
Jean-Philippe Lang
Added some unit tests for the Bazaar adapter....
r938 Creating test repositories
===================
mkdir tmp/test
Subversion
----------
svnadmin create tmp/test/subversion_repository
gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load tmp/test/subversion_repository
Jean-Philippe Lang
Added some functional tests and a CVS test repository....
r974 CVS
---
gunzip < test/fixtures/repositories/cvs_repository.tar.gz | tar -xv -C tmp/test
Jean-Philippe Lang
Added some unit tests for the Bazaar adapter....
r938 Bazaar
------
Jean-Philippe Lang
Added a Mercurial test repository with unit and functional tests....
r978 gunzip < test/fixtures/repositories/bazaar_repository.tar.gz | tar -xv -C tmp/test
Mercurial
---------
gunzip < test/fixtures/repositories/mercurial_repository.tar.gz | tar -xv -C tmp/test
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222
Git
---
gunzip < test/fixtures/repositories/git_repository.tar.gz | tar -xv -C tmp/test
Jean-Philippe Lang
Adds support for file viewing with Darcs 2.0+ (patch #1799 by Ralph Lange slightly edited)....
r1758 Darcs (2.0+ required)
---------------------
Eric Davis
Added missing documentation for setting up the Darcs test repository....
r1742 gunzip < test/fixtures/repositories/darcs_repository.tar.gz | tar -xv -C tmp/test
Jean-Philippe Lang
Adds Filesystem adapter (patch #1393 by Paul R)....
r1494 FileSystem
----------
gunzip < test/fixtures/repositories/filesystem_repository.tar.gz | tar -xv -C tmp/test
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222
Running Tests
=============
Run
rake --tasks | grep test
to see available tests.
RAILS_ENV=test rake test will run tests.
Eric Davis
Slight non-code change to test git sync...
r1918