Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #5
0
def get_mailcap() -> Dict:
    if config.MAILCAP_FILE:
        with open(config.MAILCAP_FILE) as f:
            return mailcap.readmailcapfile(f)  # type: ignore
    return mailcap.getcaps()
Beispiel #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)