File: test.py

package info (click to toggle)
alire 1.2.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 13,124 kB
  • sloc: ada: 77,497; python: 6,605; sh: 477; ansic: 347; makefile: 258; javascript: 87; xml: 40
file content (26 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
Basic check of alias definition in configuration
"""

from glob import glob
import os

from drivers.alr import run_alr
from drivers.asserts import assert_match

import re

# Get the "hello" project and enter its directory
run_alr('get', 'hello')
os.chdir(glob('hello*')[0])

# Define an alias locally
run_alr('config', '--set', 'alias.my_alias', 'exec -- echo Test an alias')

# Use the alias
p = run_alr('my_alias',
            quiet=False) # -q will hide the output of the exec command

assert_match('Test an alias', p.out, flags=re.S)

print('SUCCESS')