Todo_Marker/spec/todo_marker_spec.rb

12 lines
216 B
Ruby
Raw Normal View History

2024-06-14 22:59:20 -06:00
# frozen_string_literal: true
RSpec.describe TodoMarker do
it "has a version number" do
expect(TodoMarker::VERSION).not_to be nil
end
it "does something useful" do
expect(false).to eq(true)
end
end