From 2361eac4932d2c2b64102dd1f9c3c11a2d26a836 Mon Sep 17 00:00:00 2001 From: Maxim Lapis Date: Thu, 4 Sep 2025 19:50:21 +0200 Subject: [PATCH] Adding account_secret_fabricator --- spec/fabricators/account_secret_fabricator.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 spec/fabricators/account_secret_fabricator.rb diff --git a/spec/fabricators/account_secret_fabricator.rb b/spec/fabricators/account_secret_fabricator.rb new file mode 100644 index 00000000000..7777f62b924 --- /dev/null +++ b/spec/fabricators/account_secret_fabricator.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +Fabricator(:account_secret) do + account + private_key { OpenSSL::PKey::RSA.new(2048).to_pem } +end