We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I recently found myself writing a function to check that filepaths are equal:
assertEqualPath got expected = do got' <- canonicalizePath got expected' <- canonicalizePath expected assertBool (printf "expected: %s\n but got: %s" expected' got') $ equalFilePath got' expected'
This depends on both directory and filepath, but both of those are GHC boot packages so that seems pretty reasonable.
directory
filepath
Would it make sense to add this to HUnit? Happy to put together a PR if it would.
The text was updated successfully, but these errors were encountered:
This issue has been open for 4 years and there's been no activity. Would it make sense to close it?
Sorry, something went wrong.
Yeah, closing the issue is fine.
No branches or pull requests
I recently found myself writing a function to check that filepaths are equal:
This depends on both
directory
andfilepath
, but both of those are GHC boot packages so that seems pretty reasonable.Would it make sense to add this to HUnit? Happy to put together a PR if it would.
The text was updated successfully, but these errors were encountered: