2011-12-15 04:24:30 +04:00
|
|
|
App = require 'app'
|
2011-12-16 02:13:34 +04:00
|
|
|
fs = require 'fs'
|
2011-12-13 04:24:55 +04:00
|
|
|
|
|
|
|
describe "App", ->
|
2011-12-15 04:24:30 +04:00
|
|
|
app = null
|
2011-12-13 04:24:55 +04:00
|
|
|
|
|
|
|
beforeEach ->
|
2011-12-15 04:24:30 +04:00
|
|
|
app = new App()
|
2011-12-13 04:24:55 +04:00
|
|
|
|
2011-12-15 04:24:30 +04:00
|
|
|
afterEach ->
|
2011-12-15 06:30:17 +04:00
|
|
|
window.close() for window in app.windows()
|
2011-12-13 04:24:55 +04:00
|
|
|
|
2011-12-15 04:24:30 +04:00
|
|
|
describe "open", ->
|
|
|
|
it "loads a buffer based on the given path and displays it in a new window", ->
|
|
|
|
filePath = require.resolve 'fixtures/sample.txt'
|
|
|
|
expect(app.windows().length).toBe 0
|
2011-12-13 04:24:55 +04:00
|
|
|
|
2011-12-15 04:24:30 +04:00
|
|
|
app.open filePath
|
2011-12-13 04:24:55 +04:00
|
|
|
|
2011-12-15 04:24:30 +04:00
|
|
|
expect(app.windows().length).toBe 1
|
|
|
|
newWindow = app.windows()[0]
|
2011-12-16 02:13:34 +04:00
|
|
|
|
2011-12-15 04:24:30 +04:00
|
|
|
expect(newWindow.editor.buffer.url).toEqual filePath
|
2011-12-16 03:06:34 +04:00
|
|
|
expect(newWindow.editor.buffer.getText()).toEqual fs.read(filePath)
|