comic/odin/tests/core_smoke.odin
2026-05-21 06:10:32 +02:00

11 lines
247 B
Odin

package tests
import "core:testing"
import "../src/core"
@test
state_initial_step :: proc(t: ^testing.T) {
state := core.new_initial_state()
testing.expect(t, state.workflow.current_step == .Story_Input, "expected Story_Input initial step")
}