discourse/spec/lib/trashable_spec.rb
Jarek Radosz 45cc16098d
DEV: Move spec/components to spec/lib (#15987)
Lib specs were inexplicably split into two directories (`lib` and `components`)

This moves them all into `lib`.
2022-02-18 19:41:54 +01:00

15 lines
317 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Trashable do
# 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)
expect(Post.with_deleted.count).to eq(Post.count + 1)
end
end