(orc_df, expected_df, start=None, stop=None)
| 85 | |
| 86 | |
| 87 | def check_example_values(orc_df, expected_df, start=None, stop=None): |
| 88 | if start is not None or stop is not None: |
| 89 | expected_df = expected_df[start:stop].reset_index(drop=True) |
| 90 | assert_frame_equal(orc_df, expected_df, check_dtype=False) |
| 91 | |
| 92 | |
| 93 | def check_example_file(orc_path, expected_df, need_fix=False): |
no outgoing calls
no test coverage detected