From 65245322385412ac9b495284a27edc1bf42144d1 Mon Sep 17 00:00:00 2001 From: Sergey Dolin Date: Fri, 17 Jun 2022 11:50:52 +0200 Subject: [PATCH] Add test --- tests/python-tests.ps1 | 8 ++++++++ tests/sources/tcltk-86.py | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 tests/sources/tcltk-86.py diff --git a/tests/python-tests.ps1 b/tests/python-tests.ps1 index 8cbb0bb..bc463e2 100644 --- a/tests/python-tests.ps1 +++ b/tests/python-tests.ps1 @@ -89,4 +89,12 @@ Describe "Tests" { "./dist/simple-test" | Should -ReturnZeroExitCode } } + + if (($Platform -match "macos") -or ($Platform -match "darwin")) { + if ($Version -gt "3.7.12" ) { + It "Check if python above 3.7.12 use tcl/tk v8.6" { + "python ./sources/tcltk-86.py" | Should -ReturnZeroExitCode + } + } + } } diff --git a/tests/sources/tcltk-86.py b/tests/sources/tcltk-86.py new file mode 100644 index 0000000..42a226d --- /dev/null +++ b/tests/sources/tcltk-86.py @@ -0,0 +1,8 @@ +import tkinter +import _tkinter + +lib = tkinter.Tk().getvar('tk_version') +header = _tkinter.TK_VERSION + +if lib != '8.6' or header != '8.6': + exit(1)