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

testSaveEmptyKeys() public method

public testSaveEmptyKeys ( )
    public function testSaveEmptyKeys()
    {
        $document = [];
        $this->getCollection()->save($document);
        $this->assertSame(1, $this->getCollection()->count());
    }
MongoCollectionTest