--TEST-- Services_Digg_User::getFriendsSubmissions() --FILE-- 5, 'min_date' => 1173981000, 'max_date' => 1173981600); try { $stories = $api->getFriendsSubmissions('joestump', $params); } catch (Services_Digg_Exception $e) { echo $api->lastCall . "\n"; echo $api->lastResponse . "\n"; } if (!isset($stories->stories) || !is_array($stories->stories)) { echo $api->lastCall . "\n"; echo $api->lastResponse . "\n"; } foreach ($stories as $story) { var_dump(is_numeric($story->id)); } ?> --EXPECT-- bool(true) bool(true) bool(true) bool(true) bool(true)