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