Example #1
0
 def test_readmailcapfile(self):
     # Test readmailcapfile() using test file. It should match MAILCAPDICT.
     with open(MAILCAPFILE, 'r') as mcf:
         with self.assertWarns(DeprecationWarning):
             d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT_DEPRECATED)
Example #2
0
 def test_readmailcapfile(self):
     # Test readmailcapfile() using test file. It should match MAILCAPDICT.
     with open(MAILCAPFILE, 'r') as mcf:
         d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT)
Example #3
0
 def test_readmailcapfile(self):
     # Test readmailcapfile() using test file. It should match MAILCAPDICT.
     with open(MAILCAPFILE, 'r') as mcf:
         d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT)
Example #4
0
 def test_readmailcapfile(self):
     # Test readmailcapfile() using test file. It should match MAILCAPDICT.
     with open(MAILCAPFILE, 'r') as mcf:
         with self.assertWarns(DeprecationWarning):
             d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT_DEPRECATED)
Example #5
0
File: utils.py Project: pena-ara/tg
def get_mailcap() -> Dict:
    if config.MAILCAP_FILE:
        with open(config.MAILCAP_FILE) as f:
            return mailcap.readmailcapfile(f)  # type: ignore
    return mailcap.getcaps()
Example #6
0
 def update_event(self, inp=-1):
     self.set_output_val(0, mailcap.readmailcapfile(self.input(0)))
 def test_readmailcapfile(self):
     with open(MAILCAPFILE, 'r') as mcf:
         with self.assertWarns(DeprecationWarning):
             d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT_DEPRECATED)