11 lines
216 B
Ruby
11 lines
216 B
Ruby
|
|
require File.dirname(__FILE__) + '/../test_helper'
|
||
|
|
|
||
|
|
class ContractStatusTest < ActiveSupport::TestCase
|
||
|
|
fixtures :contract_statuses
|
||
|
|
|
||
|
|
# Replace this with your real tests.
|
||
|
|
def test_truth
|
||
|
|
assert true
|
||
|
|
end
|
||
|
|
end
|