steps.bash

#!/usr/bin/env bash

TLF_NO_RUN=true
# source $dir/code/cli.bash
source ../tlf

function test_steps(){
    step "Echo 'yes good'?" echo -e "yes good"
    step "echo 'Okay, but please | echo cats'" echo -e "Okay, but please | echo cats"
    step_run
}

test_steps