2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/spec/components/letter_avatar_spec.rb

16 lines
318 B
Ruby
Raw Normal View History

require 'rails_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
expect(Dir.entries(File.dirname(path)).length).to eq(3)
end
end