2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-07-26 00:41:58 -04:00
|
|
|
require_dependency 'trashable'
|
|
|
|
|
|
|
|
describe Trashable do
|
|
|
|
# post is trashable, just use it.
|
|
|
|
it "works correctly" do
|
|
|
|
p1 = Fabricate(:post)
|
|
|
|
p2 = Fabricate(:post)
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
expect { p1.trash! }.to change { Post.count }.by(-1)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(Post.with_deleted.count).to eq(Post.count + 1)
|
2013-07-26 00:41:58 -04:00
|
|
|
end
|
|
|
|
end
|