mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
5d31290dbc
FEATURE: use image magick version as a key for letter avatars
15 lines
312 B
Ruby
15 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
|