mirror of
https://github.com/ditkrg/rabbit_carrots.git
synced 2026-01-22 13:56:41 +00:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe RabbitCarrots do
|
|
it "has a version number" do
|
|
expect(RabbitCarrots::VERSION).not_to be nil
|
|
end
|
|
|
|
it "does something useful" do
|
|
expect(false).to eq(true)
|
|
end
|
|
end
|