Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

extends

variables:
   LOCAL_DIR: 'strawberry'


.code:
   script: |
      echo $LOCAL_DIR
      echo $CASE_NAME

one:
    variables:
       CASE_NAME: Foo
    extends: .code

two:
    variables:
       CASE_NAME: Bar
    extends: .code