Sokil\Mongo\DocumentMergeTest::testSetModifiedData_mergeListToSimple PHP Method

testSetModifiedData_mergeListToSimple() public method

    public function testSetModifiedData_mergeListToSimple()
    {
        $user = new UserDocumentMock($this->collection, array('profile' => array('interests' => array('snowboarding', 'programming', 'traveling'))));
        $this->assertEquals(array('status' => 'ACTIVE', 'comments' => 'none', 'languages' => array('php', 'js', 'css', 'html', 'sql'), 'profile' => array('name' => 'USER_NAME', 'birth' => array('year' => 1984, 'month' => 8, 'day' => 10), 'interests' => array('snowboarding', 'programming', 'traveling'), 'roles' => array('writer', 'reader', 'watcher'))), $user->toArray());
    }