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