Example #1
0
 public function testRoleWithoutACLFails()
 {
     $role = new ParseRole();
     $role->setName('Admin');
     $this->setExpectedException('Parse\\ParseException', 'ACL');
     $role->save();
 }