switched tests to qunit
This commit is contained in:
parent
b3aff50d6a
commit
c78bc6cef5
8 changed files with 2568 additions and 3 deletions
53
lib/tests/unit/ComicBook.js
Normal file
53
lib/tests/unit/ComicBook.js
Normal file
|
@ -0,0 +1,53 @@
|
|||
/* global $: false, module: false, test: false, equal: false, ComicBook: false console: false */
|
||||
|
||||
$(function () {
|
||||
|
||||
'use strict';
|
||||
|
||||
var $fixture;
|
||||
var book;
|
||||
|
||||
module('ComicBook', {
|
||||
|
||||
setup: function () {
|
||||
|
||||
$fixture = $('#qunit-fixture');
|
||||
$fixture.append('<canvas id="comic"></canvas>');
|
||||
|
||||
book = new ComicBook(
|
||||
'comic',
|
||||
['img/1.png','img/2.png','img/3.png','img/4.png','img/5.png','img/6.png'],
|
||||
{ libPath: '../vendor/' }
|
||||
);
|
||||
|
||||
// book.draw();
|
||||
},
|
||||
|
||||
teardown: function () {
|
||||
}
|
||||
});
|
||||
|
||||
test('render all controls on draw', function () {
|
||||
equal($('.cb-control, .toolbar').length, 0, 'book not drawn yet, nothing should be rendered');
|
||||
book.draw();
|
||||
equal($('.cb-control, .toolbar').length, 5, 'All toolbar elements should have rendered after book.draw');
|
||||
});
|
||||
|
||||
// navigate on keyboard
|
||||
// don't navigate if nothing left
|
||||
// show current page
|
||||
// customise keyboard control
|
||||
// dropdown menus
|
||||
// apply effects
|
||||
// maximise
|
||||
// minimise
|
||||
// fit width
|
||||
// single page / double page
|
||||
// single page should allow double page spreads
|
||||
// preloading
|
||||
// update hash
|
||||
// resume based on hash
|
||||
// load from middle of page
|
||||
// emit custom events based on data-attributes
|
||||
// destroy
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue