Skip to content

Instantly share code, notes, and snippets.

@lividgreen
Last active August 29, 2015 14:25
Show Gist options
  • Save lividgreen/01021b8d9c7663c2f20f to your computer and use it in GitHub Desktop.
Save lividgreen/01021b8d9c7663c2f20f to your computer and use it in GitHub Desktop.
<?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