nip/tests/test_minimal.nim

17 lines
334 B
Nim

## Minimal test to check compilation
echo "Testing minimal compilation..."
# Test basic imports
import std/[times, json, tables]
echo "✓ Standard library imports work"
# Test our types
try:
import ../src/nimpak/types_fixed
echo "✓ Types import works"
except:
echo "✗ Types import failed"
echo "Minimal test completed"