Skip to content

Commit

Permalink
test: Add test for empty engram with options
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmoquester committed Aug 18, 2024
1 parent 985ea0f commit 1448053
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_engram.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ def test_empty():
assert len(empty) == 0
assert empty == empty2

empty_with_options = Engrams.empty(track_age=True, track_engram_id=True)
assert empty_with_options.age is not None
assert empty_with_options.engram_ids is not None


def test_init():
batch_size = 3
Expand Down

0 comments on commit 1448053

Please sign in to comment.