about summary refs log tree commit diff
path: root/spec/services/report_service_spec.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-03-17 15:34:56 +0100
committerEugen Rochko <eugen@zeonfederated.com>2019-03-17 15:34:56 +0100
commita20354a20b9dffada0e8d6170ebc2ff13c79baea (patch)
tree74d1a47399b0cbd24187562b1a864ae5e984979c /spec/services/report_service_spec.rb
parent5e38ef87a7b8bac59ffa0d98464086ab8a60a2e1 (diff)
Set and store report URIs (#10303)
Fixes #10271
Diffstat (limited to 'spec/services/report_service_spec.rb')
-rw-r--r--spec/services/report_service_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/services/report_service_spec.rb b/spec/services/report_service_spec.rb
index e8b094c89..454e4d896 100644
--- a/spec/services/report_service_spec.rb
+++ b/spec/services/report_service_spec.rb
@@ -21,6 +21,11 @@ RSpec.describe ReportService, type: :service do
       subject.call(source_account, remote_account, forward: false)
       expect(a_request(:post, 'http://example.com/inbox')).to_not have_been_made
     end
+
+    it 'has an uri' do
+      report = subject.call(source_account, remote_account, forward: true)
+      expect(report.uri).to_not be_nil
+    end
   end
 
   context 'when other reports already exist for the same target' do