package runlive_test

import "os"

// Test helpers separated so the orchestration test stays focused.

func osGetwd() (string, error) { return os.Getwd() }
func pathExists(p string) bool {
	_, err := os.Stat(p)
	return err == nil
}
