Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/diaspora/fetcher/public_spec.rb')
-rw-r--r--spec/lib/diaspora/fetcher/public_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/lib/diaspora/fetcher/public_spec.rb b/spec/lib/diaspora/fetcher/public_spec.rb
index 5809073da..3f914175a 100644
--- a/spec/lib/diaspora/fetcher/public_spec.rb
+++ b/spec/lib/diaspora/fetcher/public_spec.rb
@@ -208,7 +208,6 @@ describe Diaspora::Fetcher::Public do
expect(public_fetcher).to receive(:check_existing).and_return(true)
expect(public_fetcher).to receive(:check_author).and_return(true)
expect(public_fetcher).to receive(:check_public).and_return(true)
- expect(public_fetcher).to receive(:check_type).and_return(true)
expect(public_fetcher.instance_eval { validate({}) }).to be true
end
@@ -256,17 +255,5 @@ describe Diaspora::Fetcher::Public do
expect(public_fetcher.instance_eval { check_public post }).to be true
end
end
-
- describe "#check_type" do
- it "returns false if the type is anything other that 'StatusMessage'" do
- post = {"post_type"=>"Reshare"}
- expect(public_fetcher.instance_eval { check_type post }).to be false
- end
-
- it "returns true if the type is 'StatusMessage'" do
- post = {"post_type"=>"StatusMessage"}
- expect(public_fetcher.instance_eval { check_type post }).to be true
- end
- end
end
end