${PRINT_USAGE:-:} <<EOF
    test              Pushes the control-repo branch to origin to enable puppet testing
EOF

command_test() {
    valid_env_name $context || error "Invalid environment to test with. '${context}' is protected or otherwise invalid"
    pushd $workspace/control-repo || error 'could not cd to control-repo. what happened?'
    git push -u origin $context
    popd
}
return 0
