15 lines
326 B
Nim
15 lines
326 B
Nim
## Test file for filesystem integration
|
|
import src/nimpak/types_fixed
|
|
import std/[times, os, options]
|
|
|
|
# Test basic types
|
|
let generation = Generation(
|
|
id: "gen-test-001",
|
|
timestamp: now(),
|
|
packages: @[],
|
|
previous: none(string),
|
|
size: 0
|
|
)
|
|
|
|
echo "Generation created: ", generation.id
|
|
echo "Test completed successfully" |