Compare commits
No commits in common. "887f9a38e1f6f467d3d274f52373e95cfe80c83e" and "22874c4c61fc9ebeba172d82af7aa5af6da37f5c" have entirely different histories.
887f9a38e1
...
22874c4c61
|
@ -68,6 +68,10 @@ def test_display_verbose(tmp_path):
|
|||
assert stdout != "" or stderr != ""
|
||||
|
||||
|
||||
# ... rest of code here ...
|
||||
|
||||
# ... rest of code here ...
|
||||
|
||||
def test_create_directory_from_file(tmp_path):
|
||||
# Define the desired directory structure in a string with proper indentation
|
||||
structure_content = """data/
|
||||
|
@ -89,7 +93,7 @@ tests/
|
|||
output_dir = tmp_path / 'output'
|
||||
output_dir.mkdir()
|
||||
|
||||
stdout, stderr = run_prodir(['create', "example.md"])
|
||||
stdout, stderr = run_prodir(['create', "example.md" '-o'])
|
||||
|
||||
# Print the stdout and stderr for debugging
|
||||
print("stdout:", stdout)
|
||||
|
|
Loading…
Reference in New Issue