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

delete_post_from_service_spec.rb « workers « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75e902034428094be3235a4333d9999d804cd222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

describe Workers::DeletePostFromService do
  before do
    @user = alice
    @post = @user.post(:status_message, :text => "hello", :to =>@user.aspects.first.id, :public =>true, :facebook_id => "23456" )
  end

  it 'calls service#delete_post with given service' do
    m = double()
    url = "foobar"
    expect(m).to receive(:delete_post)
    allow(Service).to receive(:find_by_id).and_return(m)
    Workers::DeletePostFromService.new.perform("123", @post.id.to_s)
  end
end