test: Update version assertions to 2.5.0

Updated test expectations from old versions to 2.5.0:
- tests/test_package_structure.py: 4 assertions (cli, mcp, mcp.tools, root)
- tests/test_cli_paths.py: CLI version output
- tests/test_adaptors/test_base.py: Metadata test data

All tests now expect 2.5.0 instead of 2.0.0/2.4.0.
This commit is contained in:
yusyus
2025-12-28 22:29:44 +03:00
parent 274ec968e6
commit 3fc1897340
3 changed files with 7 additions and 7 deletions

View File

@@ -37,14 +37,14 @@ class TestSkillMetadata(unittest.TestCase):
metadata = SkillMetadata(
name="react",
description="React documentation",
version="2.0.0",
version="2.5.0",
author="Test Author",
tags=["react", "javascript", "web"]
)
self.assertEqual(metadata.name, "react")
self.assertEqual(metadata.description, "React documentation")
self.assertEqual(metadata.version, "2.0.0")
self.assertEqual(metadata.version, "2.5.0")
self.assertEqual(metadata.author, "Test Author")
self.assertEqual(metadata.tags, ["react", "javascript", "web"])