11 lines
247 B
Odin
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")
|
|
}
|