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
11 lines
194 B
Ruby
11 lines
194 B
Ruby
require File.dirname(__FILE__) + '/../test_helper'
|
|
|
|
class OrderTest < Test::Unit::TestCase
|
|
fixtures :orders
|
|
|
|
# Replace this with your real tests.
|
|
def test_truth
|
|
assert true
|
|
end
|
|
end
|
|
|