literate-jasmine
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "literate-jasmine", | ||
"description": "write tests in markdown that are parsed to specification files to run with jasmine-node", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"bin": { | ||
@@ -6,0 +6,0 @@ "literate-jasmine": "./bin/literate-jasmine" |
@@ -32,15 +32,23 @@ # literate-jasmine [![Build Status](https://travis-ci.org/cymen/literate-jasmine.png?branch=master)](https://travis-ci.org/cymen/literate-jasmine) | ||
describe('literate-jasmine', function() { | ||
describe('Mathematics', function() { | ||
it('add can add numbers', function() { | ||
// test code | ||
}); | ||
it('can divide numbers', function() { | ||
// test code | ||
}); | ||
}); | ||
describe('Strings', function() { | ||
it('appending works with +', function() { | ||
// test code | ||
}); | ||
}); | ||
}); | ||
@@ -47,0 +55,0 @@ |
12073
96