diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 13:36:47 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 13:36:47 +0100 |
commit | 2d2c81765b0a68446a94a7fcba34758a3aa886c0 (patch) | |
tree | 0a0610b95195120bd334ad96f2f308a3bb30295a /spec/fabricators | |
parent | 26287b6e7dd68e03d6f2d6a7051bb9873e3f6c9a (diff) |
Adding embedded PuSH server
Diffstat (limited to 'spec/fabricators')
-rw-r--r-- | spec/fabricators/subscription_fabricator.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/fabricators/subscription_fabricator.rb b/spec/fabricators/subscription_fabricator.rb new file mode 100644 index 000000000..0c8290494 --- /dev/null +++ b/spec/fabricators/subscription_fabricator.rb @@ -0,0 +1,6 @@ +Fabricator(:subscription) do + callback_url "http://example.com/callback" + secret "foobar" + expires_at "2016-11-28 11:30:07" + confirmed false +end |