Skip to content

Commit

Permalink
Get test coverage above 61% for python 3.10
Browse files Browse the repository at this point in the history
Signed-off-by: Julie Langmann <12345+jlangm@users.noreply.github.com>
  • Loading branch information
mrloop committed Sep 15, 2023
1 parent 1a48167 commit 2089356
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,19 @@ def test_set_write_nodes(self, write_nodes: List[MockNode], nukehandler: NukeHan
# THEN
assert nukehandler.write_nodes == write_nodes

def test_set_write_nodes_all_write_nodes(
self, write_nodes: List[MockNode], nukehandler: NukeHandler
):
# GIVEN
all_write_nodes = ["All Write Nodes"]
data = {"write_nodes": all_write_nodes}

# WHEN
nukehandler.set_write_nodes(data)

# THEN
assert nukehandler.write_nodes == write_nodes

missing_nodes_params = [
(
SortedList(["these", "do", "not", "exist"]),
Expand Down

0 comments on commit 2089356

Please sign in to comment.