Skip to content

Commit

Permalink
another test to be even more sure
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Apr 15, 2013
1 parent a6782ae commit 5afd47b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ test('expand environment variables', function (t) {
t.same(parse("ab\\$x", { x: 'c' }), [ 'ab$x' ]);
t.same(parse("ab${x}def", { x: 'c' }), [ 'abcdef' ]);
t.same(parse("ab\\${x}def", { x: 'c' }), [ 'ab${x}def' ]);
t.same(parse('"ab\\${x}def"', { x: 'c' }), [ 'ab${x}def' ]);

t.end();
});
Expand Down

0 comments on commit 5afd47b

Please sign in to comment.