Skip to content

Commit

Permalink
Update some test comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jun 19, 2023
1 parent 8d64f1d commit 10c2b55
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions core/tests/widgets/test_splitcontainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ def test_widget_created():
assert splitcontainer._impl.interface == splitcontainer
assert_action_performed(splitcontainer, "create SplitContainer")

assert splitcontainer.content == []
assert splitcontainer.content == [content1, content2]
assert splitcontainer.direction == toga.SplitContainer.VERTICAL


def test_widget_created_with_values(content1, content2):
"A scroll container can be created with arguments"
"A split container can be created with arguments"
splitcontainer = toga.SplitContainer(
content=[content1, content2],
direction=toga.SplitContainer.HORIZONTAL,
Expand All @@ -68,19 +68,19 @@ def test_widget_created_with_values(content1, content2):
flex=[1, 1],
)

# The scroll container has been refreshed
# The split container has been refreshed
assert_action_performed(splitcontainer, "refresh")


def test_assign_to_app(app, splitcontainer, content1, content2):
"""If the widget is assigned to an app, the content is also assigned"""
# Scroll container is initially unassigned
# Split container is initially unassigned
assert splitcontainer.app is None

# Assign the scroll container to the app
# Assign the split container to the app
splitcontainer.app = app

# Scroll container is on the app
# Split container is on the app
assert splitcontainer.app == app

# Content is also on the app
Expand All @@ -104,13 +104,13 @@ def test_assign_to_app_no_content(app):

def test_assign_to_window(window, splitcontainer, content1, content2):
"""If the widget is assigned to a window, the content is also assigned"""
# Scroll container is initially unassigned
# Split container is initially unassigned
assert splitcontainer.window is None

# Assign the scroll container to the window
# Assign the split container to the window
splitcontainer.window = window

# Scroll container is on the window
# Split container is on the window
assert splitcontainer.window == window
# Content is also on the window
assert content1.window == window
Expand Down Expand Up @@ -166,7 +166,7 @@ def test_set_content_widgets(
flex=[1, 1],
)

# The scroll container has been refreshed
# The split container has been refreshed
assert_action_performed(splitcontainer, "refresh")


Expand All @@ -181,7 +181,7 @@ def test_set_content_flex(splitcontainer, content2, content3):
flex=[2, 3],
)

# The scroll container has been refreshed
# The split container has been refreshed
assert_action_performed(splitcontainer, "refresh")


Expand All @@ -196,7 +196,7 @@ def test_set_content_flex_altered(splitcontainer, content2, content3):
flex=[1, 1],
)

# The scroll container has been refreshed
# The split container has been refreshed
assert_action_performed(splitcontainer, "refresh")


Expand Down Expand Up @@ -246,5 +246,5 @@ def test_direction(splitcontainer):
# The direction has been set
assert splitcontainer.direction == toga.SplitContainer.HORIZONTAL

# The scroll container has been refreshed
# The split container has been refreshed
assert_action_performed(splitcontainer, "refresh")

0 comments on commit 10c2b55

Please sign in to comment.