Files
2026-07-13 12:58:18 +08:00

12 lines
322 B
Ruby

# frozen_string_literal: true
# Helper that loads bin/railway as a library (so we can access Railway:: classes
# without invoking the CLI).
require "minitest/autorun"
# Stub $PROGRAM_NAME so the bottom-of-file invocation guard is skipped.
unless defined?(::Railway)
load File.expand_path("../railway", __dir__)
end