Lines Matching full:entry
5 # Test for the Entry class
16 entry = None variable
33 """Test that we can import Entry subclassess successfully"""
36 global entry
37 import entry
38 entry.Entry.Create(None, self.GetNode(), 'u-boot')
42 global entry
43 if entry:
44 reload(entry)
46 import entry
47 entry.Entry.Create(None, self.GetNode(), 'u-boot-spl')
48 del entry
51 """Test the Entry bass class"""
52 import entry
53 base_entry = entry.Entry(None, None, None, read_node=False)
57 """Test that unknown entry types are detected"""
58 import entry
62 entry.Entry.Create(None, node, node.name)
63 self.assertIn("Unknown entry type 'invalid-name' in node "
67 """Test Entry.GetUniqueName"""
68 import entry
71 base_entry = entry.Entry(None, None, base_node, read_node=False)
74 sub_entry = entry.Entry(None, None, sub_node, read_node=False)
79 import entry
80 base_entry = entry.Entry(None, None, None, read_node=False)