Question

@with_checker([int])
    def check_sort(list_of_ints):
        self.assertTrue(isinstance(list_of_ints, list))
        self.assertTrue(len(list) == len(qsort(list)))
        self.assertTrue(False)

I'm trying to run this, but it won't run, what is the problem?

Was it helpful?

Solution

Test names must start with "test_"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top