chore: rename bulkgen to hokusai
All checks were successful
Continuous Integration / Build Package (push) Successful in 35s
Continuous Integration / Lint, Check & Test (push) Successful in 57s

This commit is contained in:
Konstantin Fickel 2026-02-20 17:08:12 +01:00
parent a28cc97aed
commit 4def49350e
Signed by: kfickel
GPG key ID: A793722F9933C1A5
32 changed files with 215 additions and 213 deletions

View file

@ -1,4 +1,4 @@
"""Integration tests for bulkgen.state."""
"""Integration tests for hokusai.state."""
from __future__ import annotations
@ -6,7 +6,7 @@ from pathlib import Path
import yaml
from bulkgen.state import (
from hokusai.state import (
BuildState,
TargetState,
hash_file,
@ -41,10 +41,10 @@ class TestStateFilename:
"""Test state filename derivation."""
def test_state_filename(self) -> None:
assert state_filename("cards") == ".cards.bulkgen-state.yaml"
assert state_filename("cards") == ".cards.hokusai-state.yaml"
def test_state_filename_simple(self) -> None:
assert state_filename("project") == ".project.bulkgen-state.yaml"
assert state_filename("project") == ".project.hokusai-state.yaml"
class TestStatePersistence: