chore: initialize safe Javis project scaffold
This commit is contained in:
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
# Test fixtures
|
||||
|
||||
Only synthetic, non-secret fixtures may be stored here. Personal Obsidian notes, tokens, logs and production exports are forbidden.
|
||||
@@ -0,0 +1,3 @@
|
||||
# Integration tests
|
||||
|
||||
Integration tests will be added with the first real provider, persistence, or adapter. Phase 0 performs no network or service integration.
|
||||
@@ -0,0 +1,14 @@
|
||||
"""Dependency-free smoke tests for the phase-0 package."""
|
||||
|
||||
import unittest
|
||||
|
||||
import javis
|
||||
|
||||
|
||||
class PackageMetadataTests(unittest.TestCase):
|
||||
def test_scaffold_version_is_explicit(self) -> None:
|
||||
self.assertEqual(javis.__version__, "0.0.0")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user