-
Notifications
You must be signed in to change notification settings - Fork 203
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
[Behat] Add BasicContent, ContentType, Field, Role and User Contexts #1654
Conversation
f6a53d6
to
f55c33b
Compare
@@ -0,0 +1,209 @@ | |||
<?php | |||
/** | |||
* This file is part of the BehatBundle package. |
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.
Needs to be updated.
17cca31
to
0835212
Compare
* @param array $fields | ||
* @param mixed $contentType The content type identifier | ||
* | ||
* @return mixed|string |
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.
What is the returned value exactly ?
0835212
to
eb15b94
Compare
@bdunogier I made some changes like you suggested. |
+1 |
In order to deprecate
BehatBundle
repository some Contexts will be moved into the kernel.Making the Contexts
classes
and nottraits
(as some of them still are in BehatBundle) should improve the overall flexibility and maintainability of the code.One if the main objectives is to use this Contexts with other Bundles BDD, such as PlatformUI, running each behat suite with the various needed Contexts instead of one with everything.
PS: this PR contains a lot of code but it has already been reviewed before, the code was just moved basically.