pulsar/spec/app/file-spec.coffee
2012-06-29 15:09:01 -07:00

34 lines
895 B
CoffeeScript

File = require 'file'
fs = require 'fs'
describe 'File', ->
file = null
beforeEach ->
path = fs.join(require.resolve('fixtures'), "temp.txt")
fs.remove(path) if fs.exists(path)
fs.write(path, "this is old!")
file = new File(path)
afterEach ->
file.off()
fs.remove(file.getPath()) if fs.exists(file.getPath())
describe "when the contents of the file change", ->
it "triggers 'contents-change' event handlers", ->
changeHandler = null
runs ->
changeHandler = jasmine.createSpy('changeHandler')
file.on 'contents-change', changeHandler
fs.write(file.getPath(), "this is new!")
waitsFor "change event", ->
changeHandler.callCount > 0
runs ->
changeHandler.reset()
fs.write(file.getPath(), "this is newer!")
waitsFor "second change event", ->
changeHandler.callCount > 0