discourse/spec/lib/trashable_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
299 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Trashable do
2013-07-26 00:41:58 -04:00
# post is trashable, just use it.
it "works correctly" do
p1 = Fabricate(:post)
p2 = Fabricate(:post)
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