Exemple #1
0
 def testK(self):
   """Make sure that parseKBytes does the right thing with kilobytes."""
   self.assertEqual(utils.parseKBytes("12K"), 12)
Exemple #2
0
 def testP(self):
   """Test amount with just 'P' for suffix."""
   self.assertEqual(utils.parseKBytes("2P"), 2199023255552)
Exemple #3
0
 def testMiB(self):
   """Test amount with MiB suffix."""
   self.assertEqual(utils.parseKBytes("8MiB"), 8192)
Exemple #4
0
 def testGB(self):
   """Test amount with GB suffix."""
   self.assertEqual(utils.parseKBytes("15G"), 15728640)
 def testK(self):
     """Make sure that parseKBytes does the right thing with kilobytes."""
     self.assertEqual(utils.parseKBytes("12K"), 12)
 def testMiB(self):
     """Test amount with MiB suffix."""
     self.assertEqual(utils.parseKBytes("8MiB"), 8192)
 def testP(self):
     """Test amount with just 'P' for suffix."""
     self.assertEqual(utils.parseKBytes("2P"), 2199023255552)
 def testGB(self):
     """Test amount with GB suffix."""
     self.assertEqual(utils.parseKBytes("15G"), 15728640)