Sokil\Mongo\DocumentMergeTest::testSetUnmodifiedData_embeddedDocument_mergeListToSimple PHP Method

testSetUnmodifiedData_embeddedDocument_mergeListToSimple() public method

    public function testSetUnmodifiedData_embeddedDocument_mergeListToSimple()
    {
        $mongoId = new \MongoId();
        $user = new UserDocumentMock($this->collection, array('_id' => $mongoId, 'profile' => array('interests' => array('snowboarding', 'programming', 'traveling'))), array('stored' => true));
        $this->assertEquals(array('_id' => $mongoId, 'profile' => array('interests' => array('snowboarding', 'programming', 'traveling'))), $user->toArray());
    }