Skip to content

Commit d86abe6

Browse files
committed
Removed faulty test
1 parent 9e627ed commit d86abe6

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

tests/ActionsTest.php

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -38,33 +38,6 @@ public static function idConst(string $val)
3838
return preg_match('/([\w\d])+/', $val) && strlen($val) >= 32;
3939
}
4040

41-
public function testActionFunctionOutputsPromiseEncapsulatedInReaderMonad()
42-
{
43-
$this->forAll(
44-
Generator\elements(
45-
array('get', array('uuids' => array('{count}' => 2)), State::COUCH_REQHEADERS),
46-
array(
47-
'post',
48-
array('search' => array('{db}' => 'testdb')),
49-
State::COUCH_REQHEADERS,
50-
array(
51-
'selector' => array(
52-
'_id' => array('$eq' => 'abc')
53-
),
54-
'skip' => 0,
55-
'limit' => 25
56-
)
57-
)
58-
)
59-
)
60-
->then(function (array $opts) {
61-
$action = Actions\_action(...$opts);
62-
63-
$this->assertInstanceOf(\Chemem\Bingo\Functional\Functors\Monads\Reader::class, $action);
64-
$this->assertInstanceOf(\React\Promise\Promise::class, $action->run($this->eventLoop));
65-
});
66-
}
67-
6841
/**
6942
* @eris-repeat 5
7043
*/

0 commit comments

Comments
 (0)