示例#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)
示例#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)
示例#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)
示例#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)
示例#5
0
文件: utils.py 项目: 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()
示例#6
0
文件: nodes.py 项目: xxoolm/Ryven
 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)