We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53bb1fc commit d20dab1Copy full SHA for d20dab1
tests/unit/test_datastructures.py
@@ -15,6 +15,11 @@ def setUp(self):
15
16
def test_get(self):
17
assert self.context_feature_set["context_2"].shape == (1, 3)
18
+ assert ("context_2" in self.context_feature_set) == True
19
+
20
+ def test_copy(self):
21
+ self.another_context_feature_set = self.context_feature_set.copy()
22
+ assert len(self.another_context_feature_set) == len(self.context_feature_set)
23
24
def test_len(self):
25
assert len(self.context_feature_set) == 2
0 commit comments