-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[Channel] Add not blank validation for channel default currency #5592
[Channel] Add not blank validation for channel default currency #5592
Conversation
Arminek
commented
Jul 25, 2016
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Related tickets | #5565 |
License | MIT |
@@ -86,6 +86,14 @@ public function chooseDefaultTaxZone($taxZone) | |||
/** | |||
* {@inheritdoc} | |||
*/ | |||
public function chooseDefaultLocale($locale) | |||
{ | |||
// $this->getElement('default_locale')->selectOption($locale); |
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.
Why did you leave it?
799b87b
to
f4cedce
Compare
f4cedce
to
010c03a
Compare
@@ -13,7 +13,7 @@ Feature: Channel validation | |||
When I name it "Mobile channel" | |||
But I do not specify its code | |||
And I try to add it | |||
Then I should be notified that code is required | |||
Then I should be notified that "code" is required |
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.
Why? 👎
5943b0a
to
2ccde64
Compare
@@ -6,12 +6,14 @@ Feature: Adding a new channel | |||
|
|||
Background: | |||
Given I am logged in as an administrator | |||
And the store has currency "Euro" |
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.
Given the store has currency "Euro"
And I am logged in as an administrator
At the beginning we should configure shop and login after everything is setup (we follow this convention everywhere).
👍, the same will need to be done for channel's default locale |
2ccde64
to
d740ad6
Compare
Good job! 👍 |