def test_cpp_layf_tabs_lead_line_with_greater_number_of_spaces_at_beginning_return_false(): cpp_layf = CppLayoutFeatures([SOURCE_CODE_12], []) tabs_lead_lines = cpp_layf.tabs_lead_lines(SOURCE_CODE_12) assert not tabs_lead_lines
def test_cpp_layf_tabs_lead_line_with_greater_number_of_tabs_at_beginning_return_true(): cpp_layf = CppLayoutFeatures([SOURCE_CODE_11], []) tabs_lead_lines = cpp_layf.tabs_lead_lines(SOURCE_CODE_11) assert tabs_lead_lines