diff options
Diffstat (limited to 'github3/tests/handler_test.py')
-rw-r--r-- | github3/tests/handler_test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/github3/tests/handler_test.py b/github3/tests/handler_test.py index 4dbe77a..83c89ef 100644 --- a/github3/tests/handler_test.py +++ b/github3/tests/handler_test.py @@ -22,6 +22,9 @@ class TestMimeTypeMixin(TestCase): return 'application/vnd.github.%s.%s+json' % ( MimeTypeMixin.VERSION, type) + def test_header(self): + self.assertEquals(self.mixin.mime_header(), None) + def test_add_mimetypes(self): self.mixin.add_raw() self.mixin.add_text() |