public void testDirURL2()
throws Exception
{
engine.saveText("TestPage", "foobar");
DavItem di = m_provider.getItem( new DavPath("TestPage/") );
assertNotNull( "No di", di );
assertTrue( "DI is of wrong type", di instanceof DirectoryItem );
assertEquals("URL", "http://localhost/attach/TestPage/", di.getHref() );
}