idempotent-request/spec/idempotent/request_spec.rb
2018-01-22 16:29:33 +01:00

12 lines
226 B
Ruby

require "spec_helper"
RSpec.describe Idempotent::Request do
it "has a version number" do
expect(Idempotent::Request::VERSION).not_to be nil
end
it "does something useful" do
expect(false).to eq(true)
end
end