blob: 409444a9cf61c857485fb66906c94ef65506a60f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
arguments+=()
expected_exitcode=0
_setup_testcase() {
ln -sr "templates/"{foo\@-_.+a-1.template,foo\@-_.+a.template}
}
IFS="" read -d '' expected_output <<'EOF'
EOF
IFS="" read -d '' expected_result <<'EOF'
pkgname=foo
pkgver=1
build() {
# template start; name=foo@-_.+a; version=1;
42 cookies
# template end;
}
EOF
|