mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06: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
|