We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b61b9 commit 1e5f76cCopy full SHA for 1e5f76c
cf/test/test_functions.py
@@ -17,9 +17,12 @@ class functionTest(unittest.TestCase):
17
def setUp(self):
18
self.test_only = ()
19
20
- def test_example_field(self):
21
- self.assertIsInstance(cf.example_fields(), cf.FieldList)
22
- for f in cf.example_fields():
+ def test_example_field_example_fields(self):
+ e = cf.example_fields()
+ self.assertIsInstance(e, cf.FieldList)
23
+
24
+ for f in e:
25
+ self.assertIsInstance(f, cf.Field)
26
f.dump(display=False)
27
28
with self.assertRaises(ValueError):
0 commit comments