-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
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
Re-export lifted Test.Hspec expectations #24
Conversation
This is failing when Travis builds |
@Jonplussed Sorry for getting back late. This looks mostly good. There are some minor things I'd like to change, I'll add comments inline. I think the build failure is due to |
@@ -0,0 +1,74 @@ | |||
module Test.Hspec.Wai.Expectation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even though I tend to follow the convention to use singular for almost everything, I would still go for Test.Hspec.Wai.Expectations
here, because we already have Test.Hspec.Expectations
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in caba301
Thanks for the notes; will edit and resubmit. |
94b151e - rename Test.Hspec.Wai.Expectation to Test.Hspec.Wai.Expectations - add documentation to lift Test.Hspec functions - import Test.Hspec.Expectations rather than Test.Hspec to future-proof
The build is still failing on with the message Was this file perhaps added to the repo outside of a pull request, bypassing the build server? |
The compile error is in |
(see a6a54ba) |
Now that we already have name clashes, I'm actually inclined to rename And if somebody really needs the current
can be expressed as
|
Oh, and we can actually depend on |
Just pushed it to master. Thanks a lot! |
😄 👍 |
Addresses #22