@@ -358,20 +358,16 @@ def test_negative_skiprows(self):
358
358
359
359
@network
360
360
def test_multiple_matches (self ):
361
- raise nose .SkipTest ("pythonxy link seems to have changed" )
362
-
363
- url = 'http://code.google.com/p/pythonxy/wiki/StandardPlugins'
364
- dfs = self .read_html (url , match = 'Python' , attrs = {'class' : 'wikitable' })
361
+ url = 'https://docs.python.org/2/'
362
+ dfs = self .read_html (url , match = 'Python' )
365
363
self .assertTrue (len (dfs ) > 1 )
366
364
367
365
@network
368
- def test_pythonxy_plugins_table (self ):
369
- raise nose .SkipTest ("pythonxy link seems to have changed" )
370
-
371
- url = 'http://code.google.com/p/pythonxy/wiki/StandardPlugins'
372
- dfs = self .read_html (url , match = 'Python' , attrs = {'class' : 'wikitable' })
373
- zz = [df .iloc [0 , 0 ] for df in dfs ]
374
- self .assertEqual (sorted (zz ), sorted (['Python' , 'SciTE' ]))
366
+ def test_python_docs_table (self ):
367
+ url = 'https://docs.python.org/2/'
368
+ dfs = self .read_html (url , match = 'Python' )
369
+ zz = [df .iloc [0 , 0 ][0 :4 ] for df in dfs ]
370
+ self .assertEqual (sorted (zz ), sorted (['Repo' , 'What' ]))
375
371
376
372
@slow
377
373
def test_thousands_macau_stats (self ):
0 commit comments