[lang-ref] Get source directory path ( python )

def test_get_source_directory_path():
    # os.path.dirname(__file__)

    expected = os.path.dirname(__file__)
    actual   = str(Path(__file__).parent)

    assert expected == actual