Example #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)
Example #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)
Example #3
0
 def test_showdiff_identical(self):
     commands._showdiff('field', 'old', 'old', True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Example #4
0
 def test_showdiff_strings(self):
     commands._showdiff('field', 'old', 'new')
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #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)
Example #6
0
 def test_showdiff_ints(self):
     commands._showdiff("field", 2, 3)
     out = self.io.getoutput()
     self.assertTrue("field" in out)
Example #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)
Example #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)
Example #9
0
 def test_showdiff_ints(self):
     commands._showdiff('field', 2, 3, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #10
0
 def test_showdiff_identical(self):
     commands._showdiff('field', 'old', 'old', True)
     out = self.io.getoutput()
     self.assertFalse('field' in out)
Example #11
0
 def test_showdiff_strings(self):
     commands._showdiff('field', 'old', 'new')
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #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)
Example #13
0
 def test_showdiff_identical(self):
     commands._showdiff("field", "old", "old", True)
     out = self.io.getoutput()
     self.assertFalse("field" in out)
Example #14
0
 def test_showdiff_floats_differenct(self):
     commands._showdiff("field", 1.999, 4.001)
     out = self.io.getoutput()
     self.assertTrue("field" in out)
Example #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)
Example #16
0
 def test_showdiff_ints(self):
     commands._showdiff('field', 2, 3, True)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #17
0
 def test_showdiff_ints_no_color(self):
     commands._showdiff('field', 2, 3, False)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #18
0
 def test_showdiff_ints_no_color(self):
     commands._showdiff('field', 2, 3, False)
     out = self.io.getoutput()
     self.assertTrue('field' in out)
Example #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)
Example #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)
Example #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)
Example #22
0
 def test_showdiff_strings(self):
     commands._showdiff("field", "old", "new")
     out = self.io.getoutput()
     self.assertTrue("field" in out)