Test removing non-existent extension.
(self, project_dir)
| 1507 | assert not ext_dir.exists() |
| 1508 | |
| 1509 | def test_remove_nonexistent(self, project_dir): |
| 1510 | """Test removing non-existent extension.""" |
| 1511 | manager = ExtensionManager(project_dir) |
| 1512 | |
| 1513 | result = manager.remove("nonexistent") |
| 1514 | assert result is False |
| 1515 | |
| 1516 | def test_list_installed(self, extension_dir, project_dir): |
| 1517 | """Test listing installed extensions.""" |
nothing calls this directly
no test coverage detected