summaryrefslogtreecommitdiff
path: root/src/client-tests/output/test_analyzer.js.stdout
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-12-16 17:37:42 +0200
committerAlon Levy <alon@pobox.com>2014-12-16 17:37:42 +0200
commitade19de410e0a789a921ec1666b278b2a64176d6 (patch)
treec4c54b106de93609ca7bb70a20fd4be696715dbe /src/client-tests/output/test_analyzer.js.stdout
parentc7d026b1d504323a8c61d51b726e5e8d2337fc4b (diff)
moving files around after repository merger
Diffstat (limited to 'src/client-tests/output/test_analyzer.js.stdout')
-rw-r--r--src/client-tests/output/test_analyzer.js.stdout82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/client-tests/output/test_analyzer.js.stdout b/src/client-tests/output/test_analyzer.js.stdout
new file mode 100644
index 00000000..7e15edcb
--- /dev/null
+++ b/src/client-tests/output/test_analyzer.js.stdout
@@ -0,0 +1,82 @@
+addScript: loaded ../src/external/require.js
+app: running under node
+addScript: loaded ../src/app.js
+test harness: starting script loading with requirejs
+test harness: main loaded
+Rhizi main started
+rhizi: init drag-n-drop
+analyzing #a hello there #b
+not same size: new/old 2 / 0; 1 / 0
+bug: temp node creation on finalize
+expected: a,b
+got: a|b
+expected: a,b,hello there
+got: a,b,hello there
+digraph {
+ a;
+ b;
+ a -> b [label=hello there];
+}
+analyzing #c and #d like #e
+not same size: new/old 3 / 0; 3 / 0
+bug: temp node creation on finalize
+expected: c,d,e
+got: c|d|e
+expected: c,e,like,d,e,like
+got: c,d,and,d,e,like,c,e,like
+digraph {
+ c;
+ d;
+ e;
+ c -> d [label=and];
+ d -> e [label=like];
+ c -> e [label=like];
+}
+analyzing #f and #g and #h are cool
+not same size: new/old 5 / 0; 3 / 0
+bug: temp node creation on finalize
+bug: temp node creation on finalize
+expected: f,g,h,f and g and h are cool
+got: f|g|h|f and g and h are cool
+expected: f,f and g and h are cool,,g,f and g and h are cool,,h,f and g and h are cool,
+got: f,f and g and h are cool,,g,f and g and h are cool,,h,f and g and h are cool,
+digraph {
+ f;
+ g;
+ h;
+ "f and g and h are cool";
+ f -> "f and g and h are cool" [label=];
+ g -> "f and g and h are cool" [label=];
+ h -> "f and g and h are cool" [label=];
+}
+analyzing #i likes #j and #k
+not same size: new/old 3 / 0; 3 / 0
+bug: temp node creation on finalize
+expected: i,j,k
+got: i|j|k
+expected: i,j,likes
+got: i,j,likes,j,k,and,i,k,likes
+digraph {
+ i;
+ j;
+ k;
+ i -> j [label=likes];
+ j -> k [label=and];
+ i -> k [label=likes];
+}
+analyzing #q likes #r but doesn't like #l
+not same size: new/old 4 / 0; 3 / 0
+bug: temp node creation on finalize
+expected: q,r,l
+got: q|r|l|q likes r but doesn't like l
+expected:
+got: q,q likes r but doesn't like l,,r,q likes r but doesn't like l,,l,q likes r but doesn't like l,
+digraph {
+ q;
+ r;
+ l;
+ "q likes r but doesn't like l";
+ q -> "q likes r but doesn't like l" [label=];
+ r -> "q likes r but doesn't like l" [label=];
+ l -> "q likes r but doesn't like l" [label=];
+}