correct emergency regeneration in the controller

This commit is contained in:
Sam
2015-05-06 07:33:32 +10:00
parent 2625c3bb9a
commit 0f53fc8328
3 changed files with 6 additions and 3 deletions

View File

@ -5,7 +5,7 @@ describe StylesheetCache do
describe "add" do
it "correctly cycles once MAX_TO_KEEP is hit" do
(StylesheetCache::MAX_TO_KEEP + 1).times do |i|
StylesheetCache.add(i.to_s, "d" + i.to_s, "c" + i.to_s)
StylesheetCache.add("a", "d" + i.to_s, "c" + i.to_s)
end
expect(StylesheetCache.count).to eq StylesheetCache::MAX_TO_KEEP