manifique/test/manifique_test.rb
2018-06-26 17:13:55 -07:00

13 lines
301 B
Ruby

require "test_helper"
class ManifiqueTest < Minitest::Test
def test_that_it_has_a_version_number
refute_nil ::Manifique::VERSION
end
def test_fetch_metadata
agent = Manifique::Agent.new(url: 'https://example.com')
assert_equal agent.fetch_metadata, 'https://example.com'
end
end