mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:23:38 +08:00
32 lines
754 B
Ruby
32 lines
754 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe "Post rake tasks" do
|
||
|
fab!(:post) { Fabricate(:post, raw: "The quick brown fox jumps over the lazy dog") }
|
||
|
let(:topic) { post.topic }
|
||
|
let(:category) { topic.category }
|
||
|
|
||
|
before do
|
||
|
Rake::Task.clear if defined?(Rake::Task)
|
||
|
Discourse::Application.load_tasks
|
||
|
STDOUT.stubs(:write)
|
||
|
end
|
||
|
|
||
|
describe "topics:apply_autoclose" do
|
||
|
it "should close topics silently" do
|
||
|
category.auto_close_hours = 1
|
||
|
category.save!
|
||
|
|
||
|
original_bumped_at = topic.bumped_at
|
||
|
|
||
|
freeze_time 2.hours.from_now
|
||
|
|
||
|
Rake::Task["topics:apply_autoclose"].invoke
|
||
|
|
||
|
topic.reload
|
||
|
|
||
|
expect(topic.closed).to eq(true)
|
||
|
expect(topic.bumped_at).to eq_time(original_bumped_at)
|
||
|
end
|
||
|
end
|
||
|
end
|