Sha256: cbaa819ebf1b9e6f272e5bc4fb7184221633f54b6c4c41e1f9d327b16c4bf180

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

var test = require('tap').test;
var spawn = require('child_process').spawn;
var path = require('path');
var concat = require('concat-stream');
var vm = require('vm');

test('bare shebang', function (t) {
    t.plan(4);
    
    var ps = spawn(process.execPath, [
        path.resolve(__dirname, '../bin/cmd.js'),
        '-', '--bare'
    ]);
    ps.stderr.pipe(process.stderr);
    ps.stdout.pipe(concat(function (body) {
        vm.runInNewContext(body, {
            Buffer: function (s) { return s.toLowerCase() },
            console: {
                log: function (msg) { t.equal(msg, 'woo') }
            }
        });
        vm.runInNewContext(body, {
            Buffer: Buffer,
            console: {
                log: function (msg) {
                    t.ok(Buffer.isBuffer(msg));
                    t.equal(msg.toString('utf8'), 'WOO')
                }
            }
        });
    }));
    ps.stdin.end('#!/usr/bin/env node\nconsole.log(Buffer("WOO"))');
    
    ps.on('exit', function (code) {
        t.equal(code, 0);
    });
});

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
minimum_viable_product-0.0.11 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.6 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.5 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.4 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.3 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.2 test/dummy/node_modules/browserify/test/bare_shebang.js
brwy_rails-0.0.1 test/dummy/node_modules/browserify/test/bare_shebang.js