mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
require 'spec_helper'
|
|
|
|
require_dependency 'jobs/scheduled/create_missing_avatars'
|
|
|
|
describe Jobs::CreateMissingAvatars do
|
|
it "runs correctly without crashing" do
|
|
Jobs::CreateMissingAvatars.new.execute(nil)
|
|
end
|
|
end
|