pulsar/spec/app/atom-spec.coffee

52 lines
1.2 KiB
CoffeeScript
Raw Normal View History

Atom = require 'atom'
fs = require 'fs'
2011-12-13 04:24:55 +04:00
describe "Atom", ->
closeAllWindows = ->
window.close() for window in atom.windows
waitsFor "there to be no windows", ->
atom.windows.length == 0
2011-12-13 04:24:55 +04:00
describe ".open(path)", ->
beforeEach ->
closeAllWindows()
afterEach ->
closeAllWindows()
describe "when opening a file", ->
2012-01-05 23:20:18 +04:00
it "displays it in a new window with the contents of the file loaded", ->
filePath = null
filePath = require.resolve 'fixtures/sample.txt'
expect(atom.windows.length).toBe 0
2011-12-13 04:24:55 +04:00
atom.open filePath
2011-12-13 04:24:55 +04:00
waitsFor "window to open", ->
atom.windows.length > 0
2012-01-04 22:51:41 +04:00
runs ->
expect(atom.windows.length).toBe 1
newWindow = atom.windows[0]
2012-03-31 02:52:19 +04:00
expect(newWindow.rootView.activeEditor().buffer.getPath()).toEqual filePath
expect(newWindow.rootView.activeEditor().buffer.getText()).toEqual fs.read(filePath)
describe ".windowOpened(window)", ->
atom = null
beforeEach ->
atom = new Atom
2012-03-16 02:22:02 +04:00
afterEach ->
atom.destroy()
2012-03-16 02:22:02 +04:00
it "adds the window to the windows array if it isn't already present", ->
atom.windowOpened window
atom.windowOpened window
expect(atom.windows).toEqual [window]