Skip to content

Commit

Permalink
chore(test/*.js) test template created
Browse files Browse the repository at this point in the history
  • Loading branch information
rimiti committed Jun 29, 2017
1 parent e3fcd4c commit 73c493e
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/adt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import parser from '../lib/parser'
import chai from 'chai'
chai.should()

describe('ADT', () => {
it(`A04`, (done) => {
done()
})

it(`A08`, (done) => {
done()
})

it(`A40`, (done) => {
done()
})
})
30 changes: 30 additions & 0 deletions test/siu.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import parser from '../lib/parser'
import chai from 'chai'
chai.should()

describe('SIU', () => {

it(`S12`, (done) => {
done()
})

it(`S13`, (done) => {
done()
})

it(`S14`, (done) => {
done()
})

it(`S15`, (done) => {
done()
})

it(`S17`, (done) => {
done()
})

it(`S26`, (done) => {
done()
})
})

0 comments on commit 73c493e

Please sign in to comment.