14 lines
259 B
Ruby
14 lines
259 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class Fourmi::Prawn::TestUtils < Minitest::Test
|
|
def test_that_it_has_a_version_number
|
|
refute_nil ::Fourmi::Prawn::Utils::VERSION
|
|
end
|
|
|
|
def test_it_does_something_useful
|
|
assert false
|
|
end
|
|
end
|