Sha256: 6bd5c7c7c95dc24bae609f79ff7a8abdacd42dece70ee39acf4b13244793c402

Contents?: true

Size: 973 Bytes

Versions: 4

Compression:

Stored size: 973 Bytes

Contents

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

test('compiling coffee with -c', function (t) {
    t.plan(4);
    
    var cwd = process.cwd();
    process.chdir(__dirname);
    
    var ps = spawn(process.execPath, [
        path.resolve(__dirname, '../bin/cmd.js'),
        '-c', __dirname + '/../node_modules/.bin/coffee -sc',
        'coffee_bin/main.coffee'
    ]);
    var src = '';
    var err = '';
    ps.stdout.on('data', function (buf) { src += buf });
    ps.stderr.on('data', function (buf) { err += buf });
    
    ps.on('exit', function (code) {
        t.equal(code, 0);
        t.equal(err, '');
        
        var msgs = [ 'hello world!', 'from x!' ];
        var c = {
            console: {
                log: function (msg) {
                    t.equal(msg, msgs.shift());
                }
            }
        };
        vm.runInNewContext(src, c);
    });
});

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sprockets-browserify-0.3.0 node_modules/browserify/test/coffee_bin.js
sprockets-browserify-0.2.0 node_modules/browserify/test/coffee_bin.js
ruby-wisp-source-0.8.0 vendor/node_modules/browserify/test/coffee_bin.js
ruby-wisp-source-0.7.0 vendor/node_modules/browserify/test/coffee_bin.js