A simple README code examples validator.
The readme-to-test
libary allows to easily validate code examples defined in the README file.
It finds all JavaScript blocks of code defined in target project's README file and converts them to unit tests. Tests are run with Mocha and can be easily integrated with the build process (and Git's pre-commit hook).
npm install readme-to-test --save-dev
The validation can be triggered by executing the following command in the target project's main directory:
node ./node_modules/.bin/readme-to-test
The README file is automatically located. The validator creates a temporary directory (.tmp
by default) and creates a separate self-contained unit test file for each block of JavaScript code found in the README. Then all the generated tests are run with Mocha. The directory is only deleted after a successful validation.
The validate-readme-examples script can supplement the existing tests:
{
"name": "library",
"version": "1.0.0",
"main": "main-script.js",
"scripts": {
"validate-readme-examples": "readme-to-test",
"test": "mocha unit/tests/ && npm run validate-readme-examples"
}
}
The following block of code:
import library from 'library';
const result = library.someFunction();
console.log(result);
// prints 'result from some function';
will be converted into a unit test:
import assert from 'assert';
import library from './main-script.js';
it('Converts prints statement following console.log to assertion', () => {
const result = library.someFunction();
console.log(result);
assert.deepEqual(result, 'result from some function');
}
var library = require('library');
// library.version === '1.0'
var assert = require('assert');
it('Converts equality statement to assertion', () => {
var library = require('library');
assert.deepEqual(library.version, '1.0');
}