(x)
| 24 | it('should satisfy associativity', function () { |
| 25 | // m.flatMap(f).flatMap(g) ~= m.flatMap(function(x) { return f(x).flatMap(g); }) |
| 26 | function f (x) { return streamOf(x + 'f') } |
| 27 | function g (x) { return streamOf(x + 'g') } |
| 28 | |
| 29 | var m = streamOf('m') |
no outgoing calls
no test coverage detected