def test_lstrip(self):
     self.assertEquals(TERMINAL.lstrip('  foo  '),
                       FakeTerminal().lstrip('  foo  '))
 def test_calling_colors(self):
     term = FakeTerminal()
     self.assertEquals(
         'foo',
         term.red_bold(term.standout('foo')))
 def test_rjust(self):
     self.assertEquals(TERMINAL.rjust('foo', 10),
                       FakeTerminal().rjust('foo', 10))
 def test_center(self):
     self.assertEquals(TERMINAL.center('foo', 10),
                       FakeTerminal().center('foo', 10))
 def test_ljust(self):
     self.assertEquals(TERMINAL.ljust('foo', 10),
                       FakeTerminal().ljust('foo', 10))
     self.assertEquals(TERMINAL.ljust(u'foo', 10),
                       FakeTerminal().ljust(u'foo', 10))
 def test_length(self):
     self.assertEquals(3, FakeTerminal().length('foo'))
 def test_calling_colors(self):
     term = FakeTerminal()
     self.assertEquals(
         'foo',
         term.red_bold(term.standout('foo')))
 def test_concatenating_colors(self):
     term = FakeTerminal()
     self.assertEquals(
         'foo',
         term.standout + term.green + term.red_bold + 'foo' + term.normal)
示例#9
0
 def test_rstrip(self):
     self.assertEqual(TERMINAL.rstrip('  foo  '),
                      FakeTerminal().rstrip('  foo  '))