Commit ba4ade9 1 parent efb2f3f commit ba4ade9 Copy full SHA for ba4ade9
File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,20 @@ def test_has_identites(self):
40
40
enrich_backend = self .connectors [self .connector ][2 ]()
41
41
self .assertFalse (enrich_backend .has_identities ())
42
42
43
+ def test_get_field_author (self ):
44
+ """ Test value of get_field_author """
45
+
46
+ enrich_backend = self .connectors [self .connector ][2 ]()
47
+ self .assertEqual (enrich_backend .get_field_author (), None )
48
+
49
+ def test_get_identities (self ):
50
+ """Test value of get_identities method"""
51
+
52
+ identities = []
53
+ enrich_backend = self .connectors [self .connector ][2 ]()
54
+ for item in self .items :
55
+ self .assertEqual (enrich_backend .get_identities (item ), identities )
56
+
43
57
def test_items_to_raw (self ):
44
58
"""Test whether JSON items are properly inserted into ES"""
45
59
You can’t perform that action at this time.
0 commit comments