]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/live_t/24-offline-all-assets.t
LP1615805 No inputs after submit in patron search (AngularJS)
[working/Evergreen.git] / Open-ILS / src / perlmods / live_t / 24-offline-all-assets.t
1 #!perl
2
3 use Test::More tests => 1;
4
5 my $command = 'wget --no-check-certificate -m https://localhost/eg/staff/offline-interface 2>&1 |grep -B 2 " 404 "|grep https|grep -v robots.txt|wc -l';
6 chomp(my $output = `$command`);
7 is($output, '0', "No missing assets required by the offline interface");
8