pointfree-fantasy
Version:
Point free wrappers for fantasy land js.
19 lines (13 loc) • 378 B
JavaScript
require('../pointfree').expose(global)
var assert = require("assert")
, quickCheckLaws = require('./helper').quickCheckLaws
, curry = require('lodash.curry')
, claire = require('claire')
, _ = claire.data
, forAll = claire.forAll
;
describe('String', function(){
quickCheckLaws({ 'Semigroup': _.Str
, 'Monoid': _.Str
});
});