mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
16 lines
312 B
Ruby
16 lines
312 B
Ruby
|
require 'spec_helper'
|
||
|
require 'letter_avatar'
|
||
|
|
||
|
describe LetterAvatar do
|
||
|
it "can cleanup correctly" do
|
||
|
path = LetterAvatar.cache_path
|
||
|
|
||
|
FileUtils.mkdir_p(path + "junk")
|
||
|
LetterAvatar.generate("test", 100)
|
||
|
|
||
|
LetterAvatar.cleanup_old
|
||
|
|
||
|
Dir.entries(File.dirname(path)).length.should == 3
|
||
|
end
|
||
|
end
|