Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created February 10, 2016 05:09
Show Gist options
  • Save muskie9/f60e372ebffe3059798f to your computer and use it in GitHub Desktop.
Save muskie9/f60e372ebffe3059798f to your computer and use it in GitHub Desktop.
<?
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