spec\LdapTools\Schema\Parser\SchemaYamlParserSpec::it_should_allow_a_schema_object_type_that_has_a_filter_defined_with_a_class_and_category PHP Метод

it_should_allow_a_schema_object_type_that_has_a_filter_defined_with_a_class_and_category() публичный Метод

    function it_should_allow_a_schema_object_type_that_has_a_filter_defined_with_a_class_and_category()
    {
        $this->beConstructedWith(__DIR__ . '/../../../resources/schema');
        $this->parse('filter', 'All')->getFilter()->toLdapFilter()->shouldBeEqualTo('(&(&(objectCategory=person)(objectClass=user))(&(foo=*)))');
    }
SchemaYamlParserSpec