blob: 3addb2f4f5fc8e155fe63f26c324875a22a40dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'test_helper'
class HippieTest < Minitest::Test
def test_that_it_has_a_version_number
refute_nil ::Net::Hippie::VERSION
end
def test_it_does_something_useful
assert true
end
end
|