mirror of https://github.com/nodejs/node.git
21 lines
545 B
JavaScript
21 lines
545 B
JavaScript
'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')
|
|
})
|
|
})
|