MCPcopy Index your code
hub / github.com/github/spec-kit / test_version_satisfies_range

Method test_version_satisfies_range

tests/test_extensions.py:2696–2700  ·  view source on GitHub ↗

Test version range.

(self)

Source from the content-addressed store, hash-verified

2694 assert not version_satisfies("0.9.9", ">=1.0.0")
2695
2696 def test_version_satisfies_range(self):
2697 """Test version range."""
2698 assert version_satisfies("1.5.0", ">=1.0.0,<2.0.0")
2699 assert not version_satisfies("2.0.0", ">=1.0.0,<2.0.0")
2700 assert not version_satisfies("0.9.0", ">=1.0.0,<2.0.0")
2701
2702 def test_version_satisfies_complex(self):
2703 """Test complex version specifier."""

Callers

nothing calls this directly

Calls 1

version_satisfiesFunction · 0.90

Tested by

no test coverage detected