8 lines
149 B
Ruby
8 lines
149 B
Ruby
require 'test_helper'
|
|
|
|
class CheckTest < ActiveSupport::TestCase
|
|
test 'the truth' do
|
|
skip 'Need to write Check test'
|
|
assert true
|
|
end
|
|
end
|