summaryrefslogtreecommitdiff
path: root/spec/factories/gpg_signature.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/gpg_signature.rb')
-rw-r--r--spec/factories/gpg_signature.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/factories/gpg_signature.rb b/spec/factories/gpg_signature.rb
new file mode 100644
index 00000000000..a5aeffbe12d
--- /dev/null
+++ b/spec/factories/gpg_signature.rb
@@ -0,0 +1,11 @@
+require_relative '../support/gpg_helpers'
+
+FactoryGirl.define do
+ factory :gpg_signature do
+ commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
+ project
+ gpg_key
+ gpg_key_primary_keyid { gpg_key.primary_keyid }
+ valid_signature true
+ end
+end