kdf
Version:
14 lines (9 loc) • 316 B
text/coffeescript
{assert} = require 'chai'
KDWindowController = require '../../src/core/windowcontroller'
describe 'KDWindowController', ->
it 'exists', ->
assert.ok(KDWindowController)
describe 'constructor', ->
it 'should instantiate without error', ->
router = new KDWindowController
assert.ok(router)