Example #1
0
def test_get_var_list_components_no_filler():
    # warning: test depends on state on database, current folder must be imported
    update_database_to_current_month_folder()
    table = get_var_list_components()
    for row in table:
        assert row[0] != FILLER
        assert row[1] != FILLER
 def test_get_var_list_components_no_filler(self):
     update_database_to_current_month_folder()
     table = get_var_list_components()
     for row in table:
         self.assertNotEqual(row[0], FILLER)
         self.assertNotEqual(row[1], FILLER)
 def test_get_var_list_components_no_filler(self):
     update_database_to_current_month_folder()
     table = get_var_list_components()
     for row in table:
         self.assertNotEqual(row[0], FILLER)
         self.assertNotEqual(row[1], FILLER)