11 lines
200 B
Ruby
11 lines
200 B
Ruby
require 'test_helper'
|
|
|
|
class AoidosTest < Minitest::Test
|
|
def test_that_it_has_a_version_number
|
|
refute_nil ::Aoidos::VERSION
|
|
end
|
|
|
|
def test_it_does_something_useful
|
|
assert false
|
|
end
|
|
end
|