Sha256: 240ff6d50359025f07a873abb84701fe205787ad5717b837ea290555ed0881ba
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
describe "Joosy.Layout", -> beforeEach -> class @TestLayout extends Joosy.Layout @box = new @TestLayout() it "should have appropriate accessors", -> callback_names = ['beforePaint', 'paint', 'erase'] callback_names.each (func) => @TestLayout[func] 'callback' expect(@TestLayout::['__' + func]).toEqual 'callback' it "should have default view", -> @box = new @TestLayout() expect(@box.__renderer instanceof Function).toBeTruthy() it "should use Router", -> target = sinon.stub Joosy.Router, 'navigate' @box.navigate 'there' expect(target.callCount).toEqual 1 expect(target.alwaysCalledWithExactly 'there').toBeTruthy() Joosy.Router.navigate.restore() it "should load itself", -> spies = [] spies.push sinon.spy(@box, '__assignElements') spies.push sinon.spy(@box, '__delegateEvents') spies.push sinon.spy(@box, '__setupWidgets') spies.push sinon.spy(@box, '__runAfterLoads') @box.__load(@ground) expect(spies).toBeSequenced() it "should unload itself", -> spies = [] spies.push sinon.spy(@box, '__clearTime') spies.push sinon.spy(@box, '__unloadWidgets') spies.push sinon.spy(@box, '__runAfterUnloads') @box.__unload() expect(spies).toBeSequenced() it "should generate uuid", -> sinon.spy Joosy, 'uuid' @box.yield() expect(Joosy.uuid.callCount).toEqual 1 expect(@box.uuid).toBeDefined() Joosy.uuid.restore() it "should uuid as selector", -> @box.yield() expect(@box.content().selector).toEqual '#' + @box.uuid
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
joosy-1.2.0.alpha.38 | spec/joosy/core/layout_spec.coffee |