Ejemplo n.º 1
0
 def test_should_raise_error_if_not_string_parameter(self):
     with pytest.raises(AttributeError):
         StringCompare('1', 3.6)
Ejemplo n.º 2
0
 def test_should_raise_error_if_unexpected_character(self):
     with pytest.raises(ValueError):
         StringCompare('2.3.d.1', '2.b.4.a').result
Ejemplo n.º 3
0
 def test_versions_different_length_second_bigger_case3(self):
     string_1 = '1.0'
     string_2 = '5.9.8.5.2'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is less than '{string_2}'",\
         "Should return a -ve number if first version is smaller than the second with different length [case 3]"
Ejemplo n.º 4
0
 def test_versions_different_length_equals_case2(self):
     string_1 = '1.2.3.0.0.1.0'
     string_2 = '1.2.3.0.0.1.0.0.0'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is equal to '{string_2}'",\
         "Should return zero if are equal with different length [case 2]"
Ejemplo n.º 5
0
 def test_versions_different_length_first_bigger_case3(self):
     string_1 = '6'
     string_2 = '1.0.0.0.0'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is greater than '{string_2}'",\
         "Should return a +ve number if first version is bigger than the second with different length [case 3]"
Ejemplo n.º 6
0
 def test_versions_same_length_first_bigger_case1(self):
     string_1 = '1.2.1'
     string_2 = '1.2.0'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is greater than '{string_2}'",\
         "Should return a +ve number if first version is bigger than the second with same length [case 1]"
Ejemplo n.º 7
0
 def test_versions_same_length_equals(self):
     string_1 = '1.2.3.4'
     string_2 = '1.2.3.4'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is equal to '{string_2}'",\
         "Should return zero if are equal with same length"
Ejemplo n.º 8
0
 def test_versions_same_length_second_bigger_case3(self):
     string_1 = '2'
     string_2 = '6'
     assert StringCompare(string_1, string_2).result == f"'{string_1}' is less than '{string_2}'",\
         "Should return a -ve number if first version is smaller than the second with same length [case 3]"
Ejemplo n.º 9
0
from my_libraries.string_compare import StringCompare

result = StringCompare("1.2", "1.1")

print(result)