Created
May 20, 2013 21:32
-
-
Save DavertMik/5615747 to your computer and use it in GitHub Desktop.
laravel test with CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$I = new TestGuy($scenario); | |
$I->wantTo('perform actions and see result'); | |
$I->amOnPage('/posts'); | |
$I->see('All Posts'); | |
$I->click('Add new post'); | |
$I->fillField('#title', 'Hello world again'); | |
$I->fillField('Body:', 'And greetings for all'); | |
$I->click('Submit'); | |
$I->see('All Posts'); | |
$I->see('Hello world'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment