spec\LdapTools\Ldif\LdifEntryBuilderSpec::it_should_build_a_delete_entry PHP 메소드

it_should_build_a_delete_entry() 공개 메소드

    function it_should_build_a_delete_entry()
    {
        $dn = 'dc=foo,dc=bar';
        $this->delete($dn)->shouldReturnAnInstanceOf('LdapTools\\Ldif\\Entry\\LdifEntryDelete');
        $this->delete($dn)->getDn()->shouldBeEqualTo($dn);
    }