@@ -292,6 +292,7 @@ public function collections()
292292 array ('products/skus ' , 'getSkus ' , 'Sku ' ),
293293 array ('requestlogs ' , 'getRequestLogs ' , 'RequestLog ' ),
294294 array ('currencies ' , 'getCurrencies ' , 'Currency ' ),
295+ array ('pages ' , 'getPages ' , 'Page ' ),
295296 );
296297 }
297298
@@ -317,7 +318,7 @@ public function testGettingASpecificResourceReturnsACollectionOfThatResource($pa
317318 */
318319 public function testGettingTheCountOfACollectionReturnsThatCollectionsCount ($ path , $ fnName , $ class )
319320 {
320- if (in_array ($ path , array ('order_statuses ' , 'requestlogs ' ))) {
321+ if (in_array ($ path , array ('order_statuses ' , 'requestlogs ' , ' pages ' ))) {
321322 //$this->markTestSkipped(sprintf('The API does not currently support getting the count of %s', $path));
322323 return ;
323324 }
@@ -345,6 +346,7 @@ public function resources()
345346 array ('optionsets ' , '%sOptionSet ' , 'OptionSet ' ),
346347 array ('coupons ' , '%sCoupon ' , 'Coupon ' ),
347348 array ('currencies ' , '%sCurrency ' , 'Currency ' ),
349+ array ('pages ' , '%sPage ' , 'Page ' ),
348350 );
349351 }
350352
0 commit comments