mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@22691 2b470e98-0d58-463d-a4d8-8e2adae1ed80
19 lines
389 B
Perl
19 lines
389 B
Perl
##############################################
|
|
# test replacements
|
|
#
|
|
##############################################
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
|
|
fhem('set GeoTest reread');
|
|
|
|
|
|
InternalTimer(time()+1, sub() {
|
|
is(FhemTestUtils_gotLog(qr/Read callback: Error: geocache\-planer.*date=[\d]+\.\d+\.\d+/), 1, "Expr replacement in URL");
|
|
done_testing;
|
|
exit(0);
|
|
}, 0);
|
|
|
|
1;
|