Todo_Marker/spec/todo_marker_spec.rb

12 lines
216 B
Ruby
Raw Permalink Normal View History

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