مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-11-30 21:32:30 +00:00
13 أسطر
365 B
Ruby
13 أسطر
365 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails_helper"
|
|
|
|
RSpec.describe Postal do
|
|
describe "#signer" do
|
|
it "returns a signer with the installation's signing key" do
|
|
expect(Postal.signer).to be_a(Signer)
|
|
expect(Postal.signer.private_key.to_pem).to eq OpenSSL::PKey::RSA.new(File.read(Postal::Config.postal.signing_key_path)).to_pem
|
|
end
|
|
end
|
|
end
|