outboxable/spec/outboxable_spec.rb
2023-03-01 00:41:16 +03:00

12 lines
216 B
Ruby

# frozen_string_literal: true
RSpec.describe Outboxable do
it "has a version number" do
expect(Outboxable::VERSION).not_to be nil
end
it "does something useful" do
expect(false).to eq(true)
end
end