Пример #1
0
 def test__end(self, mock__time):
     """cli.Status.end: The method should announce the end 
     of the activity.
     """
     expected = '\n{:7.2f} End\n----\n'.format(0.00)
     
     mock__time.return_value = 0.00
     status = cli.Status('spam', '{:>7.2f} ')
     with capture() as (out, err):
         status.end()
     actual = out.getvalue()
     
     self.assertEqual(expected, actual)
Пример #2
0
 def test__start(self):
     """cli.Status.start: The method should announce the 
     start of the activity.
     """
     expected = ('SPAM\n'
                 '----\n')
     expected_prefix = '{:>7.2} '
     
     status = cli.Status('spam', '{:>7.2} ')
     with capture() as (out, err):
         status.start()
     actual = out.getvalue()
     
     self.assertEqual(expected, actual)
Пример #3
0
 def test__init(self):
     """cli.Status: The cli.Status class should populate its 
     attributes when instantiated.
     """
     expected = [
         'Spam',
         '{:>7.2} ',
     ]
     
     status = cli.Status(*expected)
     actual = [
         status.title,
         status.prefix,
     ]
     
     self.assertEqual(expected, actual)
Пример #4
0
 def test__set(self, mock__time):
     """cli.Status.set: Given a message template and initial 
     values, the method should set the new message, and 
     print an initial update.
     """
     expected = '\n{:7.2f} Eggs 0'.format(0.00)
     
     mock__time.return_value = 0.00
     tmp = 'Eggs {}'
     status = cli.Status('spam', '{:>7.2f} ')
     with capture() as (out, err):
         status.set(tmp, 0)
     actual_out = out.getvalue()
     actual_msg = status.msg
     
     self.assertEqual(expected, actual_out)
     self.assertEqual(expected[1:], actual_msg)
Пример #5
0
 def test__update(self, mock__time):
     """cli.Status.update: Given an update to the status, 
     the method should remove the initial status and write 
     an updated status.
     """
     expected_msg = '{:7.2f} Eggs 2'.format(1.00)
     clear = '\x08' * len(expected_msg)
     expected_out = clear + expected_msg
     
     mock__time.return_value = 1.00
     status = cli.Status('spam', '{:>7.2f} ')
     status.tmp = '{:7.2f} Eggs {}'
     status.msg = '{:7.2f} Eggs 1'.format(1.00)
     mock__time.return_value = 2.00
     with capture() as (out, err):
         status.update(2)
     actual_out = out.getvalue()
     actual_msg = status.msg
     
     self.assertEqual(expected_out, actual_out)
     self.assertEqual(expected_msg, actual_msg)