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
|