File size: 667 Bytes
ec2d906
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var assert = require('assert');
var python = require('../lib/python').shell;

var runTests = function() {
   // Run a couple commands in series
   python('print "Hello World!"', function(err, data) {
      assert.equal('Hello World!\n', data);
      console.log('test 1 ok!');
      python('print "Goodbye, Cruel World!"', function (err, data) {
        assert.equal('Goodbye, Cruel World!\n', data);
        console.log('test 2 ok!');
        python('quit()');
      });
   });
   // Run one in parallel with the first two
   python('print "Asynch"', function (err, data) {
     assert.equal('Asynch\n', data);
     console.log('test 3 ok!');
   });
};

runTests();