Package detail

claire-mocha

killdream7MITdeprecated0.2.0

This functionality has been moved into Claire's core.

A bridge for using Claire in Mocha

testing, mocha, claire

readme

Claire for Mocha

Claire for Mocha is a library that makes it easier to use the [Claire][] property-based testing library in Mocha.

Example

Just use Claire for Mocha's forAll to define your properties:

global <<< require 'claire-mocha'
global <<< (require 'claire').data
{ for-all } = require 'claire'

describe 'Lists' ->
  o 'Concatenation' -> do
                       for-all (List Int), (List Int)
                       .satisfy (xs, ys) -> (xs.length + ys.length) is (xs ++ ys).length

And run Mocha as you normally would:

$ mocha

  List
    ✓ - Concatenation should yield lists with the same size

Installation

$ npm install claire-mocha

Licence

MIT/X11. ie.: Do whatever you want.