Exemple #1
0
 def test_on_two_tabs_no_missing_value(self):  # (2, 0) boundary value
     actual = row_to_list("123\t4,567\t89\n")
     # Complete the assert statement
     assert actual is None, "Expected: None, Actual: {0}".format(actual)
Exemple #2
0
 def test_on_one_tab_with_missing_value(self):  # (1, 1) boundary value
     actual = row_to_list("\t4,567\n")
     # Format the failure message
     assert actual is None, "Expected: None, Actual: {0}".format(actual)
Exemple #3
0
def test_for_missing_area_with_message():
    actual = row_to_list("\t293,410\n")
    expected = None
    message = ("row_to_list('\t293,410\n') returned {0} instead of {1}".format(
        actual, expected))
    assert actual is expected, message
Exemple #4
0
 def test_on_no_tab_no_missing_value(self):  # (0, 0) boundary value
     # Assign actual to the return value for the argument "123\n"
     actual = row_to_list("123\n")
     assert actual is None, "Expected: None, Actual: {0}".format(actual)
Exemple #5
0
def test_for_missing_area():
    assert row_to_list("\t293,410\n") is None
Exemple #6
0
def test_for_missing_tab():
    assert row_to_list("1,463238,765\n") is None
Exemple #7
0
def test_for_clean_row():
    assert row_to_list("2,081\t314,942\n") == ["2,081", "314,942"]
 def test_on_no_tab_with_missing_value(self):  # (0, 1) case
     actual = row_to_list("\n")
     assert actual is None, "Expected: None, Actual: {0}".format(actual)
 def test_on_no_tab_no_missing_value(self):  # (0, 0) boundary value
     actual = row_to_list("123\n")
     assert actual is None, "Expected: None, Actual: {0}".format(actual)
 def test_on_normal_argument_2(self):
     actual = row_to_list("1,059\t186,606\n")
     expected = ["1,059", "186,606"]
     assert actual == expected, "Expected: {0}, Actual: {1}".format(
         expected, actual)
 def test_on_normal_argument_1(self):
     actual = row_to_list("123\t4,567\n")
     expected = ["123", "4,567"]
     assert actual == expected, "Expected: {0}, Actual: {1}".format(
         expected, actual)