summaryrefslogtreecommitdiff
path: root/tests/oauth1/rfc5849/test_utils.py
diff options
context:
space:
mode:
authorDavid Gouldin <david@gould.in>2012-04-20 21:49:36 -0700
committerDavid Gouldin <david@gould.in>2012-04-20 21:49:36 -0700
commita11b0389902acbd0716e7e239ebd8efe0e2d506a (patch)
treed0b576feb35f1f442593a8df774dda02ea7a6049 /tests/oauth1/rfc5849/test_utils.py
parent8402073613602a1f599602043176b00e097a1aa5 (diff)
downloadoauthlib-a11b0389902acbd0716e7e239ebd8efe0e2d506a.tar.gz
Removing now-unneeded utf8_str.
Diffstat (limited to 'tests/oauth1/rfc5849/test_utils.py')
-rw-r--r--tests/oauth1/rfc5849/test_utils.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/oauth1/rfc5849/test_utils.py b/tests/oauth1/rfc5849/test_utils.py
index b64fbce..77b913b 100644
--- a/tests/oauth1/rfc5849/test_utils.py
+++ b/tests/oauth1/rfc5849/test_utils.py
@@ -90,16 +90,6 @@ class UtilsTests(TestCase):
self.assertTrue(filtered_params[0][0].startswith('oauth'))
self.assertTrue(filtered_params[1][0].startswith('oauth'))
- def test_utf8_str(self):
-
- # check against crazy string
- crazy_string = "àçéghîłñôßûÿž♬♨♧"
- self.assertTrue(isinstance(utf8_str(crazy_string), str))
-
- # check against crazy unicode
- crazy_unicode = utf8_str(u"àçéghîłñôßûÿž♬♨♧")
- self.assertTrue(isinstance(crazy_unicode, str))
-
def test_generate_timestamp(self):
""" TODO: Better test here """
timestamp = generate_timestamp()