diff --git a/tests/cli/test_cli.py b/tests/cli/test_cli.py index c3b19e7..348c1ce 100644 --- a/tests/cli/test_cli.py +++ b/tests/cli/test_cli.py @@ -4,8 +4,7 @@ from unittest.mock import patch, MagicMock import pytest_httpbin from scrapling.cli import ( - install, shell, mcp, - get, post, put, delete, fetch, stealthy_fetch + shell, mcp, get, post, put, delete, fetch, stealthy_fetch ) @@ -21,11 +20,6 @@ class TestCLI: def runner(self): return CliRunner() - def test_install_command(self, runner): - """Test install command""" - result = runner.invoke(install) - assert result.exit_code == 0 - def test_shell_command(self, runner): """Test shell command""" with patch('scrapling.core.shell.CustomShell') as mock_shell: