1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

add dash-dash-version-cli-flag

"--version"
This commit is contained in:
Shlomi Fish 2022-10-12 16:25:20 +03:00
parent ebae446b33
commit 21a671a8e2
2 changed files with 26 additions and 0 deletions

View file

@ -79,6 +79,10 @@ def init():
pysollib.settings.DEBUG = 1
print(('PySol debugging: set DEBUG to', pysollib.settings.DEBUG))
if '--version' in sys.argv:
print("PySol FC version {}".format(pysollib.settings.VERSION))
sys.exit(0)
# init toolkit
if '--gtk' in sys.argv:
pysollib.settings.TOOLKIT = 'gtk'

View file

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2022 Shlomi Fish <shlomif@cpan.org>
#
# Written by Shlomi Fish, under the MIT Expat License.
import os
import re
import subprocess
import unittest
class CliFlagsTests(unittest.TestCase):
def test_main(self):
if os.name == 'nt':
self.assertTrue(True)
return
o = subprocess.check_output(["./pysol.py", "--version", ])
assert o
string = o.decode('utf-8')
self.assertTrue(re.match("\\APySol FC version [0-9]+\\.", string))