mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:03:45 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
15 lines
317 B
Ruby
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
|