9 lines
179 B
Ruby
9 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class TestFicTracker < Minitest::Test
|
|
def test_that_it_has_a_version_number
|
|
refute_nil ::FicTracker::VERSION
|
|
end
|
|
end
|