Esempio n. 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 5
0
File: utils.py Progetto: 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()
Esempio n. 6
0
 def update_event(self, inp=-1):
     self.set_output_val(0, mailcap.readmailcapfile(self.input(0)))
Esempio n. 7
0
 def test_readmailcapfile(self):
     with open(MAILCAPFILE, 'r') as mcf:
         with self.assertWarns(DeprecationWarning):
             d = mailcap.readmailcapfile(mcf)
     self.assertDictEqual(d, MAILCAPDICT_DEPRECATED)