mirror of
https://github.com/mvt-project/mvt.git
synced 2026-07-07 21:48:07 +02:00
Fixes #329 outdated iOS version error
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
# Mobile Verification Toolkit (MVT)
|
||||
# Copyright (c) 2021-2023 Claudio Guarnieri.
|
||||
# Use of this software is governed by the MVT License 1.1 that can be found at
|
||||
# https://license.mvt.re/1.1/
|
||||
|
||||
from mvt.ios.versions import is_ios_version_outdated
|
||||
|
||||
|
||||
class TestIosVersions:
|
||||
|
||||
def test_is_ios_version_outdated(self):
|
||||
assert is_ios_version_outdated("20B110") is True
|
||||
assert is_ios_version_outdated("16.3") is True
|
||||
assert is_ios_version_outdated("38.2") is False
|
||||
Reference in New Issue
Block a user