From b2c06479cb03bfc029f8258b1e5935320b3e0417 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 18 Oct 2017 09:33:07 -0700 Subject: [PATCH] Add test checking that wx.GetLocale exists --- unittests/test_intl.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unittests/test_intl.py b/unittests/test_intl.py index 98f15470..c0f8465d 100644 --- a/unittests/test_intl.py +++ b/unittests/test_intl.py @@ -39,6 +39,10 @@ class intl_Tests(wtc.WidgetTestCase): wx.LANGUAGE_AMHARIC + def test_intlGetLocaleFunc(self): + # check that this function exists + l = wx.GetLocale() + #---------------------------------------------------------------------------