Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 24
- Log:
Initial import of Collaboa 0.5.6 from downloaded Tarball. Collaboa is
a Ruby On Rails based bug tracker and SVN repository browsing tool.
- Author:
- adh
- Date:
- Mon Jul 24 21:54:39 +0100 2006
- Size:
- 485 Bytes
1 | ENV["RAILS_ENV"] = "test" |
2 | require File.expand_path(File.dirname(__FILE__) + "/../config/environment") |
3 | require 'test_help' |
4 | |
5 | class Test::Unit::TestCase |
6 | # Turn off transactional fixtures if you're working with MyISAM tables in MySQL |
7 | self.use_transactional_fixtures = false |
8 | |
9 | # Instantiated fixtures are slow, but give you @david where you otherwise would need people(:david) |
10 | self.use_instantiated_fixtures = false |
11 | |
12 | # Add more helper methods to be used by all tests here... |
13 | end |