Skip to content

Commit

Permalink
Added test for caps in vertices
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Dec 1, 2014
1 parent 5f8508a commit 1d2327c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/parser/flow.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,15 @@ describe('when parsing ',function(){

expect(edges[0].type).toBe('arrow_cross');
});
it('should handle text on edges with space CAPS',function(){
var res = flow.parser.parse('graph TD;A--x|text including CAPS space|B;');

var vert = flow.parser.yy.getVertices();
var edges = flow.parser.yy.getEdges();


expect(edges[0].type).toBe('arrow_cross');
});
it('should handle multi-line text',function(){
var res = flow.parser.parse('graph TD;A--o|text space|B;\n B-->|more text with space|C;');

Expand Down Expand Up @@ -173,7 +181,15 @@ describe('when parsing ',function(){
expect(vert['C'].type).toBe('round');
expect(vert['C'].text).toBe('Chimpansen hoppar åäö <br> - ÅÄÖ');
});
it('should handle text in vertices with CAPS',function(){
var res = flow.parser.parse('graph TD;A-->C(some CAPS);');

var vert = flow.parser.yy.getVertices();
var edges = flow.parser.yy.getEdges();

expect(vert['C'].type).toBe('round');
expect(vert['C'].text).toBe('some CAPS');
});
it('should handle a single node',function(){
// Silly but syntactically correct
var res = flow.parser.parse('graph TD;A;');
Expand Down

0 comments on commit 1d2327c

Please sign in to comment.