mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
545 B
21 lines
545 B
9 years ago
|
'use strict'
|
||
|
|
||
|
var test = require('tape')
|
||
|
var configure = require('../lib/configure')
|
||
|
var execFile = require('child_process').execFile
|
||
|
|
||
|
test('find python executable', function (t) {
|
||
|
t.plan(4)
|
||
|
|
||
|
configure.test.findPython('python', function (err, found) {
|
||
|
t.strictEqual(err, null)
|
||
|
var proc = execFile(found, ['-V'], function (err, stdout, stderr) {
|
||
|
t.strictEqual(err, null)
|
||
|
t.strictEqual(stdout, '')
|
||
|
t.ok(/Python 2/.test(stderr))
|
||
|
})
|
||
|
proc.stdout.setEncoding('utf-8')
|
||
|
proc.stderr.setEncoding('utf-8')
|
||
|
})
|
||
|
})
|