update unit tests - FileHandler now calls deleteDirectory on cache directory

This commit is contained in:
Brian Gough 2014-12-22 12:58:11 +00:00
parent 64c6341844
commit 3f18f6a714

View file

@ -69,6 +69,7 @@ describe "FileHandler", ->
beforeEach ->
@keyBuilder.getConvertedFolderKey.returns(@stubbedConvetedKey)
@PersistorManager.deleteFile.callsArgWith(2)
@PersistorManager.deleteDirectory.callsArgWith(2)
it "should tell the filestore manager to delete the file", (done)->
@handler.deleteFile @bucket, @key, =>
@ -77,7 +78,7 @@ describe "FileHandler", ->
it "should tell the filestore manager to delete the cached foler", (done)->
@handler.deleteFile @bucket, @key, =>
@PersistorManager.deleteFile.calledWith(@bucket, @stubbedConvetedKey).should.equal true
@PersistorManager.deleteDirectory.calledWith(@bucket, @stubbedConvetedKey).should.equal true
done()
describe "getFile", ->