1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/tests/lib/pysol_tests/test_version_flag.py
Shlomi Fish 21a671a8e2 add dash-dash-version-cli-flag
"--version"
2022-10-28 09:43:38 +03:00

22 lines
548 B
Python

# -*- 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))