Skip to content

Commit

Permalink
Merge pull request #95 from clue-labs/tests-without-readline
Browse files Browse the repository at this point in the history
Refactor executing functional tests without ext-readline
  • Loading branch information
clue authored Nov 20, 2020
2 parents 306886e + 911cb29 commit 60d003b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/FunctionalExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ public function testStubCanEndWithoutOutput()
$this->assertEquals('', $output);
}

public function testStubCanEndWithoutExtensions()
public function testStubCanEndWithoutReadlineFunctions()
{
$output = $this->execExample('php -n ../tests/stub/04-end.php');
$output = $this->execExample('php -d disable_functions=readline_callback_handler_install,readline_callback_handler_remove ../tests/stub/04-end.php');

$this->assertEquals('', $output);
}
Expand Down

0 comments on commit 60d003b

Please sign in to comment.