Example #1
0
 def test_comma_and_space(self):
     mods = man._parse_modules((u'urllib, socket',))
     self.assertEqual(mods, [u'urllib', u'socket'])
Example #2
0
 def test_comma_and_space(self):
     mods = man._parse_modules((u'urllib, socket', ))
     self.assertEqual(mods, [u'urllib', u'socket'])
Example #3
0
 def test_basic(self):
     mods = man._parse_modules((u'urllib', u'socket',))
     self.assertEqual(mods, [u'urllib', u'socket'])
Example #4
0
 def test_basic(self):
     mods = man._parse_modules((
         u'urllib',
         u'socket',
     ))
     self.assertEqual(mods, [u'urllib', u'socket'])