aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/shell-quote/test/set.js
blob: 9694538ad82c5da95c85fbae8a8a68cd06c94a8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict';

var test = require('tape');
var parse = require('../').parse;

test('set env vars', function (t) {
	t.same(
		parse('ABC=444 x y z'),
		['ABC=444', 'x', 'y', 'z']
	);
	t.same(
		parse('ABC=3\\ 4\\ 5 x y z'),
		['ABC=3 4 5', 'x', 'y', 'z']
	);
	t.same(
		parse('X="7 8 9" printx'),
		['X=7 8 9', 'printx']
	);
	t.same(
		parse('X="7 8 9"; printx'),
		['X=7 8 9', { op: ';' }, 'printx']
	);
	t.same(
		parse('X="7 8 9"; printx', function () {
			t.fail('should not have matched any keys');
		}),
		['X=7 8 9', { op: ';' }, 'printx']
	);

	t.end();
});
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage