rabbit_carrots/spec/rabbit_carrots_spec.rb
2022-12-01 16:35:40 +03:00

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