Remove the photo comment spec

This functionality is not something we support and it doesn't look
it will be reintroduced soon.

see discussion https://github.com/diaspora/diaspora/pull/6818#discussion_r70227392
This commit is contained in:
cmrd Senya 2016-07-11 15:11:15 +00:00
parent c1e583cffd
commit 0ee34f8590
No known key found for this signature in database
GPG key ID: 5FCC5BA680E67BFE

View file

@ -203,12 +203,6 @@ describe Photo, :type => :model do
end
end
context "commenting" do
it "accepts comments if there is no parent status message" do
expect{ @user.comment!(@photo, "big willy style") }.to change(@photo.comments, :count).by(1)
end
end
describe '#queue_processing_job' do
it 'should queue a job to process the images' do
expect(Workers::ProcessPhoto).to receive(:perform_async).with(@photo.id)