PATH:
opt
/
alt
/
python35
/
lib64
/
python3.5
/
idlelib
/
idle_test
import unittest from idlelib.Delegator import Delegator class DelegatorTest(unittest.TestCase): def test_mydel(self): # Test a simple use scenario. # Initialize an int delegator. mydel = Delegator(int) self.assertIs(mydel.delegate, int) self.assertEqual(mydel._Delegator__cache, set()) # Trying to access a non-attribute of int fails. self.assertRaises(AttributeError, mydel.__getattr__, 'xyz') # Add real int attribute 'bit_length' by accessing it. bl = mydel.bit_length self.assertIs(bl, int.bit_length) self.assertIs(mydel.__dict__['bit_length'], int.bit_length) self.assertEqual(mydel._Delegator__cache, {'bit_length'}) # Add attribute 'numerator'. mydel.numerator self.assertEqual(mydel._Delegator__cache, {'bit_length', 'numerator'}) # Delete 'numerator'. del mydel.numerator self.assertNotIn('numerator', mydel.__dict__) # The current implementation leaves it in the name cache. # self.assertIn('numerator', mydel._Delegator__cache) # However, this is not required and not part of the specification # Change delegate to float, first resetting the attributes. mydel.setdelegate(float) # calls resetcache self.assertNotIn('bit_length', mydel.__dict__) self.assertEqual(mydel._Delegator__cache, set()) self.assertIs(mydel.delegate, float) if __name__ == '__main__': unittest.main(verbosity=2, exit=2)
[-] htest.py
[edit]
[-] test_editmenu.py
[edit]
[-] test_replacedialog.py
[edit]
[+]
__pycache__
[-] __init__.py
[edit]
[-] test_delegator.py
[edit]
[-] test_io.py
[edit]
[-] test_grep.py
[edit]
[-] test_searchengine.py
[edit]
[-] test_config_help.py
[edit]
[-] mock_idle.py
[edit]
[-] test_parenmatch.py
[edit]
[-] test_calltips.py
[edit]
[-] test_config_name.py
[edit]
[-] test_autoexpand.py
[edit]
[-] test_textview.py
[edit]
[-] test_rstrip.py
[edit]
[-] test_editor.py
[edit]
[-] test_text.py
[edit]
[-] test_autocomplete.py
[edit]
[-] test_configdialog.py
[edit]
[-] test_hyperparser.py
[edit]
[+]
..
[-] README.txt
[edit]
[-] test_widgetredir.py
[edit]
[-] test_idlehistory.py
[edit]
[-] test_undodelegator.py
[edit]
[-] test_warning.py
[edit]
[-] test_help_about.py
[edit]
[-] test_searchdialog.py
[edit]
[-] test_pathbrowser.py
[edit]
[-] test_formatparagraph.py
[edit]
[-] mock_tk.py
[edit]
[-] test_percolator.py
[edit]
[-] test_searchdialogbase.py
[edit]