mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54:13 +00:00

PR-URL: https://github.com/nodejs/node/pull/4958 Reviewed-By: Myles Borins <mborins@us.ibm.com> Reviewed-By: Kat Marchán <kzm@sykosomatic.org> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
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')
|
|
})
|
|
})
|