-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
DOCSP-35974: Update one usage example #2781
DOCSP-35974: Update one usage example #2781
Conversation
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.
One suggestion:
@@ -0,0 +1,38 @@ | |||
<?php |
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.
I get the following error when running this file:
Could not open input file: vendor/bin/phpunit
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.
That would get installed by running composer update
from the repository root to install all dependencies in composer.json
(both require
and require-dev
).
Was the error above based on following instructions in Contributing: Run Tests. It's not clear to me how this file would even be picked up by the normal test suite (files under tests/
), so I'll defer to @GromNaN to follow up here.
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.
I'm following these instructions, but I was running the command in the wrong folder; here's what I get now:
There was 1 PHPUnit test runner warning:
1) No tests found in class "App\Http\Controllers\UpdateOneTest".
No tests executed!
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.
#2795 should address this.
|
||
declare(strict_types=1); | ||
|
||
namespace App\Http\Controllers; |
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.
@GromNaN: more generally I don't see a clear benefit to putting PHPUnit test files outside of the tests/
directory like this. This differs from the PHPLIB approach, where we run example/docs scripts from ExamplesTest and assert output.
Based on the current PHPUnit configuration, these files won't be picked up by the test suite (nor tools like phpcs and phpstan). It might make more sense to organize these files within the actual test suite and then have docs refer to them there. And in that case, we can use meaningful namespaces.
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.
The namespace is of no particular interest. I think we'll come back to it to clean it up.
…y/laravel-mongodb into DOCSP-35974-update-one-usage-ex
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.
I updated the example test (formatting and assertions).
JIRA - https://jira.mongodb.org/browse/DOCSP-35974
Staging - https://preview-mongodbnorareidy.gatsbyjs.io/laravel/DOCSP-35974/usage-examples/updateOne/
Checklist