2019-06-17 11:01:41 +02:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :bill_signature do
|
2020-06-30 17:53:54 +02:00
|
|
|
serialized { Rack::Test::UploadedFile.new('spec/fixtures/files/bill_signature/serialized.json', 'application/json') }
|
|
|
|
signature { Rack::Test::UploadedFile.new('spec/fixtures/files/bill_signature/signature.der', 'application/x-x509-ca-cert') }
|
2019-06-17 11:01:41 +02:00
|
|
|
end
|
|
|
|
end
|