blob: 3d276fc8f4b4d267ff6732c341b8cc0169e956c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'test_helper'
class Net::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
|