Test that the fields are set correctly. Args: child: A child class.
(child)
| 22 | |
| 23 | |
| 24 | def test_get_fields(child): |
| 25 | """Test that the fields are set correctly. |
| 26 | |
| 27 | Args: |
| 28 | child: A child class. |
| 29 | """ |
| 30 | assert child.get_fields().keys() == {"num", "key"} |
| 31 | |
| 32 | |
| 33 | def test_set(child): |
nothing calls this directly
no test coverage detected