Commit 763af417 authored by Barry Warsaw's avatar Barry Warsaw

test_multipart_one_part(): Idempotency test case for a multipart/*

with only one subpart.
parent 15e9dc9e
# Copyright (C) 2001 Python Software Foundation
# Copyright (C) 2001,2002 Python Software Foundation
# email package unit tests
import os
......@@ -790,6 +790,10 @@ class TestIdempotent(unittest.TestCase):
msg, text = self._msgobj('msg_21.txt')
self._idempotent(msg, text)
def test_multipart_one_part(self):
msg, text = self._msgobj('msg_23.txt')
self._idempotent(msg, text)
def test_content_type(self):
eq = self.assertEquals
# Get a message object and reset the seek pointer for other tests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment