25 lines
767 B
Ruby
25 lines
767 B
Ruby
require File.dirname(__FILE__) + '/../spec_helper'
|
|
|
|
describe Retraction do
|
|
before do
|
|
@user = Factory.create(:user)
|
|
@person = Factory.create(:person)
|
|
@group = @user.group(:name => "Bruisers")
|
|
@user.activate_friend(@person, @group)
|
|
@post = @user.post :status_message, :message => "Destroy!", :to => @group.id
|
|
end
|
|
describe 'serialization' do
|
|
it 'should have a post id after serialization' do
|
|
retraction = Retraction.for(@post)
|
|
xml = retraction.to_xml.to_s
|
|
xml.include?(@post.id.to_s).should == true
|
|
end
|
|
end
|
|
describe 'dispatching' do
|
|
it 'should dispatch a message on delete' do
|
|
Factory.create(:person)
|
|
User::QUEUE.should_receive :add_post_request
|
|
@post.destroy
|
|
end
|
|
end
|
|
end
|