Skip to content
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

allow alias to be a callback #452

Merged
merged 7 commits into from
Aug 16, 2019
Merged

Conversation

crissi
Copy link
Contributor

@crissi crissi commented Aug 16, 2019

a test actually existed for this case but just repeated the previous test

Copy link
Collaborator

@mfn mfn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reminds me of #353 but cleaner 👍

@@ -213,7 +213,7 @@ protected static function handleFields(array $queryArgs, array $requestedFields,
// Select
else {
$key = isset($fieldObject->config['alias'])
? $fieldObject->config['alias']
? value($fieldObject->config['alias'])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know these global helpers are super convenient, but the same reason they're global I despise them.

In this case this should be replaced with inline code doing the same.

],
],
];

$this->assertEquals($response->getStatusCode(), 200);
$this->assertEquals($expectedResult, $response->json());

// clear the mock
Carbon::setTestNow();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now necessary, Laravels (and Orchestras) tearDown takes care of it

->create([
'post_id' => $post->id,
'created_at' => new DateTime('2000-01-01'),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather stay in "Carbon-town" everywhere.

@mfn
Copy link
Collaborator

mfn commented Aug 16, 2019

a test actually existed for this case but just repeated the previous test

I remember, guess I was too enthusiastic in #356 ;)

Copy link
Collaborator

@mfn mfn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@mfn mfn merged commit da79950 into rebing:master Aug 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants