Exemple #1
0
 def test_describe_non_ascii_unicode(self):
     string = _u("A\xA7")
     suffix = _u("B\xA7")
     mismatch = DoesNotStartWith(string, suffix)
     self.assertEqual(
         "%s does not start with %s." %
         (text_repr(string), text_repr(suffix)), mismatch.describe())
 def test_describe_non_ascii_unicode(self):
     string = _u("A\xA7")
     suffix = _u("B\xA7")
     mismatch = DoesNotStartWith(string, suffix)
     self.assertEqual("%s does not start with %s." % (
         text_repr(string), text_repr(suffix)),
         mismatch.describe())
Exemple #3
0
 def test_describe(self):
     mismatch = DoesNotStartWith("fo", "bo")
     self.assertEqual("'fo' does not start with 'bo'.", mismatch.describe())
Exemple #4
0
 def test_describe_non_ascii_bytes(self):
     string = _b("A\xA7")
     suffix = _b("B\xA7")
     mismatch = DoesNotStartWith(string, suffix)
     self.assertEqual("%r does not start with %r." % (string, suffix),
                      mismatch.describe())
Exemple #5
0
 def test_describe(self):
     mismatch = DoesNotStartWith("fo", "bo")
     self.assertEqual("'fo' does not start with 'bo'.", mismatch.describe())
 def test_describe_non_ascii_bytes(self):
     string = _b("A\xA7")
     suffix = _b("B\xA7")
     mismatch = DoesNotStartWith(string, suffix)
     self.assertEqual("%r does not start with %r." % (string, suffix),
         mismatch.describe())