UNPKG

phonegap-facebook-plugin

Version:

The official Facebook plugin for Apache Cordova/PhoneGap

40 lines (28 loc) 720 B
var shell = require('..'); var assert = require('assert'), path = require('path'), fs = require('fs'); // Node shims for < v0.7 fs.existsSync = fs.existsSync || path.existsSync; shell.config.silent = true; function numLines(str) { return typeof str === 'string' ? str.match(/\n/g).length : 0; } shell.rm('-rf', 'tmp'); shell.mkdir('tmp'); // // Invalids // 'hello world'.to(); assert.ok(shell.error()); assert.equal(fs.existsSync('/asdfasdf'), false); // sanity check 'hello world'.to('/asdfasdf/file'); assert.ok(shell.error()); // // Valids // 'hello world'.to('tmp/to1'); var result = shell.cat('tmp/to1'); assert.equal(shell.error(), null); assert.equal(result, 'hello world'); shell.exit(123);