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