Last active
August 29, 2015 14:25
-
-
Save lividgreen/01021b8d9c7663c2f20f to your computer and use it in GitHub Desktop.
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 | |
$testcase = function(CodeGuy $i) { | |
$i->goTo('/home'); | |
$i->see('blablabl'); | |
$i->doEither(function(CodeGuy $i) { | |
$i->click('button'); | |
$i->see('hello'); | |
$i->doEither(function(CodeGuy $i) { | |
// next level subcase 1 | |
}) | |
->or(function(CodeGuy $i) { | |
// next level subcase 2 | |
}) | |
->or(function(CodeGuy $i) { | |
// next level subcase 3 | |
}); | |
})->or(function(CodeGuy $i) { | |
$i->click('save'); | |
$i->see('world'); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment