diff --git a/tests/tests/test_pyjs.py b/tests/tests/test_pyjs.py index 745d6b3..ec5f898 100644 --- a/tests/tests/test_pyjs.py +++ b/tests/tests/test_pyjs.py @@ -693,6 +693,12 @@ def test_imports_sys(): import pexpect import resource +def test_fcntl(): + import os, fcntl + import fcntl + print(fcntl) + print(dir(fcntl)) + fcntl.fcntl(1, fcntl.F_GETFL) def test_webbrowser(): from webbrowser import open, open_new, open_new_tab