example\ReaderMonadTest::test_it_should_pass_the_name_around PHP Method

test_it_should_pass_the_name_around() public method

    public function test_it_should_pass_the_name_around()
    {
        $r = R\reader('example\\hello')->bind('example\\ask')->map('strtoupper');
        $this->assertEquals('HELLO WORLD!', $r->runReader('World'));
        $this->assertEquals('HELLO GILLES! HOW ARE YOU ?', $r->runReader('Gilles'));
    }