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:
- 276 Bytes
1 | require File.dirname(__FILE__) + '/../test_helper' |
2 | |
3 | class SeverityTest < Test::Unit::TestCase |
4 | fixtures :severities |
5 | |
6 | def setup |
7 | @severity = Severity.find(1) |
8 | end |
9 | |
10 | # Replace this with your real tests. |
11 | def test_truth |
12 | assert_kind_of Severity, @severity |
13 | end |
14 | end |