blob: 3b318778ee33e125a8db83357843ed86747000b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require File.dirname(__FILE__) + '/../test_helper'
class IssueTest < Test::Unit::TestCase
fixtures :issues
# Replace this with your real tests.
def test_truth
assert_kind_of Issue, issues(:first)
end
end
|