mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-18 10:49:26 +00:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
9 lines
227 B
Python
9 lines
227 B
Python
import mock
|
|
|
|
from pkg_resources import evaluate_marker
|
|
|
|
|
|
@mock.patch('platform.python_version', return_value='2.7.10')
|
|
def test_ordering(python_version_mock):
|
|
assert evaluate_marker("python_full_version > '2.7.3'") is True
|