Show More
@@ -2,7 +2,6 | |||||
2 | // Check for errors with up and down arrow presses in a non-empty notebook. |
|
2 | // Check for errors with up and down arrow presses in a non-empty notebook. | |
3 | // |
|
3 | // | |
4 | casper.notebook_test(function () { |
|
4 | casper.notebook_test(function () { | |
5 | this.then(function(){ |
|
|||
6 |
|
|
5 | var result = this.evaluate(function() { | |
7 |
|
|
6 | IPython.notebook.command_mode(); | |
8 |
|
|
7 | pos0 = IPython.notebook.get_selected_index(); | |
@@ -15,9 +14,11 casper.notebook_test(function () { | |||||
15 |
|
|
14 | pos3 = IPython.notebook.get_selected_index(); | |
16 |
|
|
15 | IPython.keyboard.trigger_keydown('down'); | |
17 |
|
|
16 | pos4 = IPython.notebook.get_selected_index(); | |
18 | return [pos0, pos1, pos2, pos3, pos4]; |
|
17 | return pos0 == 0 && | |
|
18 | pos1 == 1 && | |||
|
19 | pos2 == 2 && | |||
|
20 | pos3 == 1 && | |||
|
21 | pos4 == 2; | |||
19 |
|
|
22 | }); | |
20 |
|
|
23 | this.test.assertTrue(result, 'Up/down arrow okay in non-empty notebook.'); | |
21 | }); |
|
|||
22 |
|
||||
23 |
}); |
|
24 | }); |
@@ -25,7 +25,7 casper.notebook_test(function () { | |||||
25 | this.then(function () { |
|
25 | this.then(function () { | |
26 | var output = this.get_output_cell(0); |
|
26 | var output = this.get_output_cell(0); | |
27 | this.test.assert(messages.length > 0, "Captured log message"); |
|
27 | this.test.assert(messages.length > 0, "Captured log message"); | |
28 |
this.test.assertEquals(messages[messages.length-1] |
|
28 | this.test.assertEquals(messages[messages.length-1], "Invalid type for image/png 5", "Logged Invalid type message"); | |
29 | this.test.assertEquals(output['image/png'], undefined, "Non-string png data was stripped"); |
|
29 | this.test.assertEquals(output['image/png'], undefined, "Non-string png data was stripped"); | |
30 | this.test.assertEquals(output['text/plain'], '5', "text data is fine"); |
|
30 | this.test.assertEquals(output['text/plain'], '5', "text data is fine"); | |
31 | }); |
|
31 | }); |
General Comments 0
You need to be logged in to leave comments.
Login now