Packages

Execute a user-written script to create a repeatable demo scenario

Current section

Files

Jump to
demo_gen test support commands alpha.ex
Raw

test/support/commands/alpha.ex

defmodule DemoGen.Test.Alpha do
use DemoGen, command_name: "alpha"
@impl DemoGen.Command
def run(_args, context) do
{:ok, Map.put(context, "alpha", true)}
end
end