wenima / data-structures

used for all data structure assignments
1 stars 0 forks source link

remove test_node_init from test based on Nick's comments #4

Closed wenima closed 7 years ago

wenima commented 7 years ago

1

+def test_node_init():
+    """Test the initialization of a node."""
+    from linked_list import Node
+    assert type(Node) == type

All class objects are type objects. You don't need to test for that, that's handled by Python

CCallahanIV commented 7 years ago

Done.