Test that the fields are set correctly. Args: complex_child: A child class.
(complex_child)
| 69 | |
| 70 | |
| 71 | def test_complex_get_fields(complex_child): |
| 72 | """Test that the fields are set correctly. |
| 73 | |
| 74 | Args: |
| 75 | complex_child: A child class. |
| 76 | """ |
| 77 | assert complex_child.get_fields().keys() == {"num", "key", "name", "age", "active"} |
| 78 | |
| 79 | |
| 80 | def test_complex_set(complex_child): |
nothing calls this directly
no test coverage detected