mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 20:58:29 -06:00
Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
14
Dependencies/Python/Lib/idlelib/idle_test/test_util.py
vendored
Normal file
14
Dependencies/Python/Lib/idlelib/idle_test/test_util.py
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
"""Test util, coverage 100%"""
|
||||
|
||||
import unittest
|
||||
from idlelib import util
|
||||
|
||||
|
||||
class UtilTest(unittest.TestCase):
|
||||
def test_extensions(self):
|
||||
for extension in {'.pyi', '.py', '.pyw'}:
|
||||
self.assertIn(extension, util.py_extensions)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(verbosity=2)
|
Reference in New Issue
Block a user