12 lines
204 B
Ruby
12 lines
204 B
Ruby
require 'test_helper'
|
|
|
|
class DocurestTest < Minitest::Test
|
|
def test_that_it_has_a_version_number
|
|
refute_nil ::Docurest::VERSION
|
|
end
|
|
|
|
def test_it_does_something_useful
|
|
assert false
|
|
end
|
|
end
|