2013-07-26 00:41:58 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
require_dependency 'trashable'
|
|
|
|
|
|
|
|
describe Trashable do
|
|
|
|
# post is trashable, just use it.
|
|
|
|
it "works correctly" do
|
|
|
|
p1 = Fabricate(:post)
|
|
|
|
p2 = Fabricate(:post)
|
|
|
|
|
2013-10-23 19:05:51 -04:00
|
|
|
expect { p1.trash! }.to change{Post.count}.by(-1)
|
|
|
|
Post.with_deleted.count.should == Post.count + 1
|
2013-07-26 00:41:58 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|