Exemple #1
0
def test_read_md_file():
    """Compare the extracted code with the python file."""
    doc_path = os.path.join(ROOT_DIR, MD_FILE)
    code_blocks = extract_code_blocks(filepath=doc_path, filter_="python")
    test_code_path = os.path.join(CUR_PATH, PY_FILE)
    python_file = extract_python_code(test_code_path)
    assert code_blocks[-1] == python_file, "Files must be exactly the same."
Exemple #2
0
 def setup_class(cls):
     """Setup the test class."""
     BaseAEATestCase.setup_class()
     doc_path = os.path.join(ROOT_DIR, MD_FILE)
     cls.code_blocks = extract_code_blocks(filepath=doc_path, filter="python")
     test_code_path = os.path.join(CUR_PATH, PY_FILE)
     cls.python_file = extract_python_code(test_code_path)