Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testDrop PHP Method

testDrop() public method

public testDrop ( )
    public function testDrop()
    {
        $document = ['foo' => 'bar'];
        $this->getCollection()->insert($document);
        $expected = ['ns' => (string) $this->getCollection(), 'nIndexesWas' => 1, 'ok' => 1.0];
        $this->assertSame($expected, $this->getCollection()->drop());
    }
MongoCollectionTest