public function WebAssertTest::testAddressEqualsEmptyPath in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/tests/WebAssertTest.php \Behat\Mink\Tests\WebAssertTest::testAddressEqualsEmptyPath()
File
- vendor/
behat/ mink/ tests/ WebAssertTest.php, line 48
Class
Namespace
Behat\Mink\TestsCode
public function testAddressEqualsEmptyPath() {
$this->session
->expects($this
->once())
->method('getCurrentUrl')
->willReturn('http://example.com');
$this
->assertCorrectAssertion('addressEquals', array(
'/',
));
}