mirror of
https://github.com/ditkrg/idempotent-request.git
synced 2026-01-22 13:56:45 +00:00
12 lines
226 B
Ruby
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
|