From c6b0311b8626b42bc7e79e0195047a50e5b64dd1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 26 Sep 2016 16:42:38 +0200 Subject: Fix #54 - Fetch remote accounts by URL from mentions Fetching atom extracted from FetchRemoteAccountService and FetchRemoteStatusService into FetchAtomService. Mentions of the constant "http://activityschema.org/collection/public" skipped as it's not a real URL/user. --- spec/services/fetch_atom_service_spec.rb | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 spec/services/fetch_atom_service_spec.rb (limited to 'spec/services/fetch_atom_service_spec.rb') diff --git a/spec/services/fetch_atom_service_spec.rb b/spec/services/fetch_atom_service_spec.rb new file mode 100644 index 000000000..5491fd027 --- /dev/null +++ b/spec/services/fetch_atom_service_spec.rb @@ -0,0 +1,4 @@ +require 'rails_helper' + +RSpec.describe FetchAtomService do +end -- cgit