Пример #1
0
    def test_showdiff_ints_colorizing_is_not_stringwise(self):
        commands._showdiff('field', 222, 333, True)
        complete_diff = self.io.getoutput().split()[1]

        commands._showdiff('field', 222, 232, True)
        partial_diff = self.io.getoutput().split()[1]

        self.assertEqual(complete_diff, partial_diff)
Пример #2
0
    def test_showdiff_ints_colorizing_is_not_stringwise(self):
        commands._showdiff('field', 222, 333, True)
        complete_diff = self.io.getoutput().split()[1]

        commands._showdiff('field', 222, 232, True)
        partial_diff = self.io.getoutput().split()[1]

        self.assertEqual(complete_diff, partial_diff)
Пример #3
0
 def test_showdiff_identical(self):
     commands._showdiff('field', 'old', 'old', True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Пример #4
0
 def test_showdiff_strings(self):
     commands._showdiff('field', 'old', 'new')
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #5
0
 def test_showdiff_floats_differenct(self):
     commands._showdiff('field', 1.999, 4.001, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #6
0
 def test_showdiff_ints(self):
     commands._showdiff("field", 2, 3)
     out = self.io.getoutput()
     self.assertTrue("field" in out)
Пример #7
0
 def test_showdiff_floats_differenct(self):
     commands._showdiff('field', 1.999, 4.001, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #8
0
 def test_showdiff_shows_both(self):
     commands._showdiff('field', 'old', 'new', True)
     out = self.io.getoutput()
     self.assertTrue('old' in out)
     self.assertTrue('new' in out)
Пример #9
0
 def test_showdiff_ints(self):
     commands._showdiff('field', 2, 3, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #10
0
 def test_showdiff_identical(self):
     commands._showdiff('field', 'old', 'old', True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Пример #11
0
 def test_showdiff_strings(self):
     commands._showdiff('field', 'old', 'new')
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #12
0
 def test_showdiff_shows_both(self):
     commands._showdiff("field", "old", "new", True)
     out = self.io.getoutput()
     self.assertTrue("old" in out)
     self.assertTrue("new" in out)
Пример #13
0
 def test_showdiff_identical(self):
     commands._showdiff("field", "old", "old", True)
     out = self.io.getoutput()
     self.assertFalse("field" in out)
Пример #14
0
 def test_showdiff_floats_differenct(self):
     commands._showdiff("field", 1.999, 4.001)
     out = self.io.getoutput()
     self.assertTrue("field" in out)
Пример #15
0
 def test_showdiff_ints_no_color(self):
     config["color"] = False
     commands._showdiff("field", 2, 3)
     out = self.io.getoutput()
     self.assertTrue("field" in out)
Пример #16
0
 def test_showdiff_ints(self):
     commands._showdiff('field', 2, 3, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #17
0
 def test_showdiff_ints_no_color(self):
     commands._showdiff('field', 2, 3, False)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #18
0
 def test_showdiff_ints_no_color(self):
     commands._showdiff('field', 2, 3, False)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Пример #19
0
 def test_showdiff_floats_close_to_identical(self):
     commands._showdiff('field', 1.999, 2.001, True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Пример #20
0
 def test_showdiff_shows_both(self):
     commands._showdiff('field', 'old', 'new', True)
     out = self.io.getoutput()
     self.assertTrue('old' in out)
     self.assertTrue('new' in out)
Пример #21
0
 def test_showdiff_floats_close_to_identical(self):
     commands._showdiff('field', 1.999, 2.001, True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Пример #22
0
 def test_showdiff_strings(self):
     commands._showdiff("field", "old", "new")
     out = self.io.getoutput()
     self.assertTrue("field" in out)