We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed9ffe1 commit d5596c8Copy full SHA for d5596c8
tests/test_recommendations.py
@@ -9,6 +9,7 @@
9
check_target_api,
10
read_ndk_version,
11
check_python_version,
12
+ print_recommendations,
13
MAX_NDK_VERSION,
14
RECOMMENDED_NDK_VERSION,
15
RECOMMENDED_TARGET_API,
@@ -237,3 +238,12 @@ def test_check_python_version(self):
237
238
fake_version_info.major = MIN_PYTHON_MAJOR_VERSION
239
fake_version_info.minor = MIN_PYTHON_MINOR_VERSION
240
check_python_version()
241
+
242
+ def test_print_recommendations(self):
243
+ """
244
+ Simple test that the function actually runs.
245
246
+ # The main failure mode is if the function tries to print a variable
247
+ # that doesn't actually exist, so simply running to check all the
248
+ # prints work is the most important test.
249
+ print_recommendations()
0 commit comments