7 lines
131 B
Ruby
7 lines
131 B
Ruby
require 'test_helper'
|
|
|
|
class ReportTest < ActiveSupport::TestCase
|
|
test 'the truth' do
|
|
assert_not Report.new.valid?
|
|
end
|
|
end
|