This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/lib/letter_avatar_spec.rb
2022-07-28 10:27:38 +08:00

17 lines
332 B
Ruby

# frozen_string_literal: true
require 'letter_avatar'
RSpec.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