mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-14 13:25:09 -05:00
19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
|
arguments+=(--template-dir $testdir/$testcase/templates/build)
|
||
|
arguments+=(--template-dir $testdir/$testcase/templates/package)
|
||
|
expected_exitcode=0
|
||
|
|
||
|
IFS="" read -d '' expected_output <<'EOF'
|
||
|
EOF
|
||
|
|
||
|
IFS="" read -d '' expected_result <<'EOF'
|
||
|
pkgname=foo
|
||
|
pkgver=1
|
||
|
|
||
|
# template start; name=build; version=1;
|
||
|
build() {}
|
||
|
# template end;
|
||
|
# template start; name=package; version=1;
|
||
|
package() {}
|
||
|
# template end;
|
||
|
EOF
|