0.2.0 • Published 11 years ago

claire-mocha v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
11 years ago

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.

0.2.0

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago