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:
parent
ebae446b33
commit
21a671a8e2
2 changed files with 26 additions and 0 deletions
|
@ -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'
|
||||
|
|
22
tests/lib/pysol_tests/test_version_flag.py
Normal file
22
tests/lib/pysol_tests/test_version_flag.py
Normal 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))
|
Loading…
Add table
Reference in a new issue