8a74e7d77f
Annotate: Better look in schema.rb, this reference should be always up to date. Hirb: To reactivate hirb, look in railscasts: http://railscasts.com/episodes/48-console-tricks-revised
12 lines
205 B
Ruby
12 lines
205 B
Ruby
require File.dirname(__FILE__) + '/../test_helper'
|
|
|
|
class AssignmentTest < Test::Unit::TestCase
|
|
fixtures :assignments
|
|
|
|
# Replace this with your real tests.
|
|
def test_truth
|
|
assert true
|
|
end
|
|
end
|
|
|
|
|