I want to test if my dataframe is shuffled (not equal). I see that unittest has a assertEqual and a asserNotEqual possibility. I want to do the assertNotEqual, but then for assert_frame_equal (so assert_frame_not_equal). How can I rewrite this function such that it tests for inequality?
class TestOp(unittest.TestCase): def test_random_shuffle(self): result = oper.randomly_shuffle_locations_test(stock_file) assert_frame_equal(result, stock_file)
1.4m articles
1.4m replys
5 comments
57.0k users