(self)
| 72 | |
| 73 | |
| 74 | def test_offline_processing_node(self): |
| 75 | offline_node = ProcessingNode.objects.get(pk=2) |
| 76 | self.assertFalse(offline_node.update_node_info(), "Could not update info (offline)") |
| 77 | self.assertTrue(offline_node.api_version == "", "API version is not set") |
| 78 | |
| 79 | def test_auto_update_node_info(self): |
| 80 | with start_processing_node(): |
nothing calls this directly
no test coverage detected