Example #1
0
 public function testAdminBasic()
 {
     // make sure it behaves like a normal connection
     $this->object->selectCollection("phpunit", "c")->drop();
     $this->object->selectCollection("phpunit", "c")->insert(array("foo" => "bar"));
     $x = $this->object->selectCollection("phpunit", "c")->findOne();
     $this->assertEquals("bar", $x["foo"]);
 }