8000 [FrameworkBundle][Workflow] fix guard expressions by destillat · Pull Request #28018 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle][Workflow] fix guard expressions #28018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Prev Previous commit
Next Next commit
[Workflow] remove duplicate test
  • Loading branch information
destillat committed Jul 26, 2018
commit 720f943fb7645f5c615348c0e2bdf2446da18a9e
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,6 @@ public function testWithValidatorSupportedEventAndAccept()
$this->assertFalse($event->isBlocked());
}

public function testWithGuardExpression()
{
$event = $this->createEvent();
$this->configureValidator(true, true);
$this->listener->onTransition($event, 'test_expression');

$this->assertFalse($event->isBlocked());
}

public function testWithGuardExpressionWithNotSupportedTransition()
{
$event = $this->createEvent(true);
Expand Down
0