Created
February 10, 2016 05:09
-
-
Save muskie9/f60e372ebffe3059798f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<? | |
class YourObjectTest extends FunctionalTest{ | |
public function testCanCreate(){ | |
$nullMember = Member::create(); | |
$nullMember->write(); | |
$this->assertTrue(singleton('YourObject')->canCreate($nullMember)); | |
$nullMember->delete(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment