Commit f3478477 by Tim Babych

Merge pull request #4973 from edx/tim/single-group-is-ok

Update test_group_configuration_validation on single group allowed
parents 3d50f4c3 df9f80ff
...@@ -642,9 +642,9 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin): ...@@ -642,9 +642,9 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin):
When I set a name When I set a name
And I delete the name of one of the groups and try to save And I delete the name of one of the groups and try to save
Then I see error message "All groups must have a name" Then I see error message "All groups must have a name"
When I delete the group without name and try to save When I delete all the groups and try to save
Then I see error message "Please add at least two groups." Then I see error message "There must be at least one group."
When I add new group and try to save When I add a group and try to save
Then I see the group configuration is saved successfully Then I see the group configuration is saved successfully
""" """
def try_to_save_and_verify_error_message(message): def try_to_save_and_verify_error_message(message):
...@@ -668,7 +668,9 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin): ...@@ -668,7 +668,9 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin):
config.name = "Name of the Group Configuration" config.name = "Name of the Group Configuration"
config.groups[1].name = '' config.groups[1].name = ''
try_to_save_and_verify_error_message("All groups must have a name.") try_to_save_and_verify_error_message("All groups must have a name.")
config.groups[1].remove() config.groups[0].remove()
config.groups[0].remove()
try_to_save_and_verify_error_message("There must be at least one group.")
config.add_group() config.add_group()
# Save the configuration # Save the configuration
...@@ -678,7 +680,7 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin): ...@@ -678,7 +680,7 @@ class GroupConfigurationsTest(ContainerBase, SplitTestMixin):
config, config,
name="Name of the Group Configuration", name="Name of the Group Configuration",
description="Description of the group configuration.", description="Description of the group configuration.",
groups=["Group A", "Group B"] groups=["Group A"]
) )
def test_group_configuration_empty_usage(self): def test_group_configuration_empty_usage(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment