summaryrefslogtreecommitdiff
path: root/support/arara/source/src/test/resources/executiontests/sessions/sessionrule.yaml
blob: 9b26f740d71286cc7656b372f77781c26fd760a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
!config
identifier: sessionrule
name: Test rule for sessions
commands:
  - name: The echoer
    command: >
      @{
          getSession().put('quack', 'Quack');
          return getCommand('echo', 'Quack');
      }
  - name: The echoer mark II
    command: >
      @{
          return getCommand('echo', 'Meow' + getSession().get('quack'));
      }
arguments: []