Show More
@@ -1,31 +1,33 b'' | |||||
1 | // |
|
1 | // | |
2 | // Test shutdown of a kernel. |
|
2 | // Test shutdown of a kernel. | |
3 | // |
|
3 | // | |
4 | casper.notebook_test(function () { |
|
4 | casper.notebook_test(function () { | |
5 | // XXX: test.begin allows named sections but requires casperjs 1.1.0-DEV. |
|
5 | // XXX: test.begin allows named sections but requires casperjs 1.1.0-DEV. | |
6 | // We will put it back into place when the next version of casper is |
|
6 | // We will put it back into place when the next version of casper is | |
7 | // released. Following that, all instances of this.test can be changed |
|
7 | // released. Following that, all instances of this.test can be changed | |
8 | // to just test. |
|
8 | // to just test. | |
9 | //this.test.begin("shutdown tests (notebook)", 2, function(test) { |
|
9 | //this.test.begin("shutdown tests (notebook)", 2, function(test) { | |
10 |
|
10 | |||
11 | this.thenEvaluate(function () { |
|
11 | this.thenEvaluate(function () { | |
12 | $('#kill_and_exit').click(); |
|
12 | $('#kill_and_exit').click(); | |
13 | }); |
|
13 | }); | |
14 |
|
14 | |||
15 | this.thenEvaluate(function () { |
|
15 | this.thenEvaluate(function () { | |
16 | var cell = IPython.notebook.get_cell(0); |
|
16 | var cell = IPython.notebook.get_cell(0); | |
17 | cell.set_text('a=10; print(a)'); |
|
17 | cell.set_text('a=10; print(a)'); | |
18 | cell.execute(); |
|
18 | cell.execute(); | |
19 | }); |
|
19 | }); | |
20 |
|
20 | |||
21 | // refactor this into just a get_output(0) |
|
21 | // refactor this into just a get_output(0) | |
22 | this.then(function () { |
|
22 | this.then(function () { | |
23 | var result = this.get_output_cell(0); |
|
23 | var result = this.get_output_cell(0); | |
24 | this.test.assertFalsy(result, "after shutdown: no execution results"); |
|
24 | this.test.assertFalsy(result, "after shutdown: no execution results"); | |
25 | this.test.assertNot(this.kernel_running(), |
|
25 | this.test.assertNot(this.kernel_running(), | |
26 | 'after shutdown: IPython.notebook.kernel.running is false '); |
|
26 | 'after shutdown: IPython.notebook.kernel.running is false '); | |
27 | }); |
|
27 | }); | |
28 |
|
28 | |||
|
29 | this.thenOpen(this.get_notebook_server()); | |||
|
30 | ||||
29 | //}); // end of test.begin |
|
31 | //}); // end of test.begin | |
30 | }); |
|
32 | }); | |
31 |
|
33 |
General Comments 0
You need to be logged in to leave comments.
Login now