-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add Ability to retrieve metadata from the server #1
Conversation
Matthewaj
commented
Mar 24, 2023
•
edited
Loading
edited
- Added the ability to retrieve metadata in requests.
Thanks Matt!
|
The additional packages I added
The same thing happens with Ruby as well.
Installing bundler
Thanks for the heads up. I'll start working on refactoring it to pass the call argument now. |
capybara (~> 3.12, < 4) | ||
addressable (2.8.1) | ||
public_suffix (>= 2.0.2, < 6.0) | ||
apparition (0.6.0) |
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.
Had to update apparition. There was some interaction between the newer versions of chrome that just caused some tests to hang indefinitely.
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.
LGTM, just curious about some of the test variables
@@ -16,6 +16,7 @@ | |||
let(:service) { TestHelloService.new } | |||
let(:service_method) { :SayHello } | |||
let(:accept) { '*/*' } | |||
let(:metadata) { {} } |
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.
Should this be getting added to the request above? It doesn't seem to be breaking but I figured I'd check as the variable isn't referenced anywhere from what I'm seeing. I might be missing if it's somewhere in a shared test though
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.
Hmm good point I'm not too sure why this was added, I'll be removing it
@@ -18,6 +18,7 @@ | |||
let(:service) { instance_double(TestHelloService) } | |||
let(:service_method) { :SayHello } | |||
let(:accept) { '*/*' } | |||
let(:metadata) { {} } |
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.
Same as the previous question
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.
Removed