summaryrefslogtreecommitdiffstats
path: root/doc/backends/deckjs/deck.js/test/spec.status.js
diff options
context:
space:
mode:
Diffstat (limited to 'doc/backends/deckjs/deck.js/test/spec.status.js')
-rw-r--r--doc/backends/deckjs/deck.js/test/spec.status.js60
1 files changed, 60 insertions, 0 deletions
diff --git a/doc/backends/deckjs/deck.js/test/spec.status.js b/doc/backends/deckjs/deck.js/test/spec.status.js
new file mode 100644
index 00000000..5232f1c8
--- /dev/null
+++ b/doc/backends/deckjs/deck.js/test/spec.status.js
@@ -0,0 +1,60 @@
+describe('Deck JS Status Indicator', function() {
+ beforeEach(function() {
+ loadFixtures('standard.html');
+ if (Modernizr.history) {
+ history.replaceState({}, "", "#")
+ }
+ else {
+ window.location.hash = '#';
+ }
+ $.deck('.slide');
+ });
+
+ it('should show the correct total number of slides', function() {
+ expect($(defaults.selectors.statusTotal)).toHaveText($.deck('getSlides').length);
+ });
+
+ it('should start at the right current slide', function() {
+ expect($(defaults.selectors.statusCurrent)).toHaveText(1);
+ $.deck('go', 2);
+ $.deck('.slide');
+ waitsFor(function() {
+ return $(defaults.selectors.statusCurrent).text() === '3';
+ });
+ });
+
+ it('should update to the correct number on slide change', function() {
+ $.deck('go', 2);
+ expect($(defaults.selectors.statusCurrent)).toHaveText('3');
+ });
+});
+
+describe('countNested false indicator', function() {
+ beforeEach(function() {
+ loadFixtures('nesteds.html');
+ if (Modernizr.history) {
+ history.replaceState({}, "", "#")
+ }
+ else {
+ window.location.hash = '#';
+ }
+ $.deck('.slide', {
+ countNested: false
+ });
+ });
+
+ it('should ignore nested slides in the total', function() {
+ expect($(defaults.selectors.statusTotal)).toHaveText('5');
+ });
+
+ it('should update to the root slide number when nested becomes active', function() {
+ $.deck('go', 10);
+ expect($(defaults.selectors.statusCurrent)).toHaveText('4');
+ $.deck('prev');
+ expect($(defaults.selectors.statusCurrent)).toHaveText('3');
+ $.deck('go', 3);
+ expect($(defaults.selectors.statusCurrent)).toHaveText('3');
+ $.deck('go', 1);
+ expect($(defaults.selectors.statusCurrent)).toHaveText('2');
+ });
+}); \ No newline at end of file