summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/archy/test/multi_line.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/archy/test/multi_line.js')
-rw-r--r--deps/node/deps/npm/node_modules/archy/test/multi_line.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/deps/node/deps/npm/node_modules/archy/test/multi_line.js b/deps/node/deps/npm/node_modules/archy/test/multi_line.js
deleted file mode 100644
index 2cf2154d..00000000
--- a/deps/node/deps/npm/node_modules/archy/test/multi_line.js
+++ /dev/null
@@ -1,45 +0,0 @@
-var test = require('tape');
-var archy = require('../');
-
-test('multi-line', function (t) {
- var s = archy({
- label : 'beep\none\ntwo',
- nodes : [
- 'ity',
- {
- label : 'boop',
- nodes : [
- {
- label : 'o_O\nwheee',
- nodes : [
- {
- label : 'oh',
- nodes : [ 'hello', 'puny\nmeat' ]
- },
- 'creature'
- ]
- },
- 'party\ntime!'
- ]
- }
- ]
- });
- t.equal(s, [
- 'beep',
- '│ one',
- '│ two',
- '├── ity',
- '└─┬ boop',
- ' ├─┬ o_O',
- ' │ │ wheee',
- ' │ ├─┬ oh',
- ' │ │ ├── hello',
- ' │ │ └── puny',
- ' │ │ meat',
- ' │ └── creature',
- ' └── party',
- ' time!',
- ''
- ].join('\n'));
- t.end();
-});