Home | History | Annotate | Download | only in python24

Lines Matching full:compare_version

30 from webkitpy.python24.versioning import compare_version
52 """Tests compare_version()."""
59 (comparison, current_version, min_version) = compare_version()
62 def compare_version(self, target_version, current_version=None):
63 """Call compare_version()."""
67 return compare_version(mock_sys, target_version)
70 """Call compare_version(), and return the comparison."""
71 return self.compare_version(target_version, current_version)[0]
75 current_version = self.compare_version("2.5")[1]
80 target_version = self.compare_version("2.5")[2]