/usr/share/doc/r-cran-yaml/run-unit-test is in r-cran-yaml 2.1.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh -e
oname=yaml
pkg=r-cran-`echo $oname | tr '[A-Z]' '[a-z]'`
if [ "$ADTTMP" = "" ] ; then
ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
fi
cd $ADTTMP
cp -a /usr/lib/R/site-library/${oname}/tests $ADTTMP
ls -R $ADTTMP
LC_ALL=C R --no-save <<EOR
require("yaml")
require("testthat")
test_dir("tests")
EOR
|