Skip to content

Commit

Permalink
Increased test:coveralls result
Browse files Browse the repository at this point in the history
  • Loading branch information
daniilsavchuk committed May 4, 2017
1 parent be0850e commit 5b95ba5
Showing 1 changed file with 44 additions and 1 deletion.
45 changes: 44 additions & 1 deletion test/parser/WDL/entities/WDLWorkflowTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { expect } from 'chai';

import WDLWorkflow from '../../../../src/parser/WDL/entities/WDLWorkflow';
import WDLParserError from '../../../../src/parser/WDL/utils/utils';
import Port from '../../../../src/model/Port';

describe('parser/WDL/entities/WDLWorkflow', () => {

Expand Down Expand Up @@ -237,7 +238,46 @@ describe('parser/WDL/entities/WDLWorkflow', () => {
col: 6,
},
alias: null,
body: null,
body: {
name: 'CallBody',
attributes: {
declarations: {
list: [],
},
io: {
list: [
{
name: 'Inputs',
attributes: {
map: {
list: [
{
name: 'IOMapping',
attributes: {
key: {
id: 14,
str: 'identifier',
source_string: 'currSample',
line: 8,
col: 9,
},
value: {
id: 14,
str: 'identifier',
source_string: 'i',
line: 8,
col: 20,
},
},
},
],
},
},
},
],
},
},
},
},
},
],
Expand All @@ -251,6 +291,9 @@ describe('parser/WDL/entities/WDLWorkflow', () => {
const context = {
actionMap: {
bar: {
i: {
currSample: new Port('currSample'),
},
},
},
};
Expand Down

0 comments on commit 5b95ba5

Please sign in to comment.