(self)
| 141 | self.assertIn("architecture", info) |
| 142 | |
| 143 | def test_device_info_default(self): |
| 144 | info = mx.device_info() |
| 145 | self.assertIsInstance(info, dict) |
| 146 | self.assertIn("device_name", info) |
| 147 | |
| 148 | |
| 149 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected