10 lines
180 B
Ruby
10 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class CheckTest < ActiveSupport::TestCase
|
|
test "the truth" do
|
|
skip "Need to write Check test"
|
|
assert true
|
|
end
|
|
end
|