示例#1
0
 function testGlobalChecksOnly()
 {
     $builder = new Perms_Builder();
     $perms = $builder->withDefinitions(array(array('name' => 'tiki_p_search', 'type' => 'tiki', 'scope' => 'global', 'admin' => false), array('name' => 'tiki_p_edit', 'type' => 'wiki', 'scope' => 'object', 'admin' => false)))->build();
     $expect = $this->getExpect(false, array(), array('search'));
     $this->assertEquals($expect, $perms);
 }