This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/models/post_reply_key_spec.rb
2023-01-09 11:49:28 +00:00

17 lines
497 B
Ruby

# frozen_string_literal: true
RSpec.describe PostReplyKey do
describe "#reply_key" do
it "should format the reply_key correctly" do
hex = SecureRandom.hex
post_reply_key = Fabricate(:post_reply_key, reply_key: hex)
raw_key = PostReplyKey.where(id: post_reply_key.id).pluck("reply_key::text").first
expect(raw_key).to_not eq(hex)
expect(raw_key.delete("-")).to eq(hex)
expect(PostReplyKey.find(post_reply_key.id).reply_key).to eq(hex)
end
end
end