initial commit

This commit is contained in:
Yorick
2016-04-01 14:09:55 +00:00
commit 2e04121fef
2175 changed files with 537519 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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();