mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 23:33:37 +08:00
6e1aeb1f50
Don't load rake files over and over again when running specs.
24 lines
672 B
Ruby
24 lines
672 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "incoming emails tasks" do
|
|
describe "email with attachment" do
|
|
fab!(:incoming_email) { Fabricate(:incoming_email, raw: email(:attached_txt_file)) }
|
|
|
|
it "updates record" do
|
|
expect { invoke_rake_task("incoming_emails:truncate_long") }.to change {
|
|
incoming_email.reload.raw
|
|
}
|
|
end
|
|
end
|
|
|
|
describe "short email without attachment" do
|
|
fab!(:incoming_email) { Fabricate(:incoming_email, raw: email(:html_reply)) }
|
|
|
|
it "does not update record" do
|
|
expect { invoke_rake_task("incoming_emails:truncate_long") }.not_to change {
|
|
incoming_email.reload.raw
|
|
}
|
|
end
|
|
end
|
|
end
|