PATH: //proc/self/root/opt/alt/python34/lib64/python3.4/idlelib/idle_test
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 README.txt
↓
X
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 htest.py
↓
X
📄 mock_idle.py
↓
X
📄 mock_tk.py
↓
X
📄 test_autocomplete.py
↓
X
📄 test_autoexpand.py
↓
X
📄 test_calltips.py
↓
X
📄 test_config_name.py
↓
X
📄 test_configdialog.py
↓
X
📄 test_delegator.py
↓
X
📄 test_editor.py
↓
X
📄 test_formatparagraph.py
↓
X
📄 test_grep.py
↓
X
📄 test_hyperparser.py
↓
X
📄 test_idlehistory.py
↓
X
📄 test_io.py
↓
X
📄 test_parenmatch.py
↓
X
📄 test_pathbrowser.py
↓
X
📄 test_rstrip.py
↓
X
📄 test_searchdialogbase.py
↓
X
📄 test_searchengine.py
↓
X
📄 test_text.py
↓
X
📄 test_textview.py
↓
X
📄 test_warning.py
↓
X
📄 test_widgetredir.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: test_delegator.py
import unittest from idlelib.Delegator import Delegator class DelegatorTest(unittest.TestCase): def test_mydel(self): # test a simple use scenario # initialize mydel = Delegator(int) self.assertIs(mydel.delegate, int) self.assertEqual(mydel._Delegator__cache, set()) # add an attribute: self.assertRaises(AttributeError, mydel.__getattr__, 'xyz') 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 a second attribute mydel.numerator self.assertEqual(mydel._Delegator__cache, {'bit_length', 'numerator'}) # delete the second (which, however, leaves it in the name cache) del mydel.numerator self.assertNotIn('numerator', mydel.__dict__) self.assertIn('numerator', mydel._Delegator__cache) # reset by calling .setdelegate, which calls .resetcache mydel.setdelegate(float) self.assertIs(mydel.delegate, float) self.assertNotIn('bit_length', mydel.__dict__) self.assertEqual(mydel._Delegator__cache, set()) if __name__ == '__main__': unittest.main(verbosity=2, exit=2)
SIMPAN PERUBAHAN