summaryrefslogtreecommitdiff
path: root/t/basewiki_brokenlinks.t
blob: baee285e24409fc699edec0609e3243e825d8092 (plain)
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More 'no_plan';
  5. ok(! system("mkdir t/tmp"));
  6. ok(! system("make -q ikiwiki.out"));
  7. ok(! system("make extra_install DESTDIR=`pwd`/t/tmp/install PREFIX=/usr >/dev/null"));
  8. ok(! system("LANG= perl -T -I. ./ikiwiki.out -plugin smiley -plugin brokenlinks -rebuild -underlaydir=t/tmp/install/usr/share/ikiwiki/basewiki -templatedir=templates t/basewiki_brokenlinks t/tmp/out"));
  9. ok(`grep 'no broken links' t/tmp/out/index.html`);
  10. ok(-e "t/tmp/out/style.css");
  11. ok(! system("rm -rf t/tmp t/basewiki_brokenlinks/.ikiwiki"));
> 'Ел. пошта',
  • 'Employee' => 'Прац╕вник',
  • 'Expense' => 'Видатки',
  • 'From' => 'В╕д/З',
  • 'ID' => '╤дентиф╕кац╕йний номер',
  • 'Include in Report' => 'Додати до Зв╕ту',
  • 'Login' => 'Початок Сеансу',
  • 'Name' => 'Назва',
  • 'Name missing!' => 'Не вказана назва!',
  • 'Notes' => 'Прим╕тки',
  • 'Number' => 'Номер',
  • 'Orphaned' => 'В╕докремлений/Осирот╕лий',
  • 'Rate' => 'Розц╕нка',
  • 'Sales' => 'Збут',
  • 'Save' => 'Зберегти',
  • 'Save as new' => 'Зберегти як нове',
  • 'To' => 'До',
  • 'Update' => 'Поновити',
  • 'User' => 'Користувач',
  • };
  • $self{subs} = {
  • 'acc_menu' => 'acc_menu',
  • 'add' => 'add',
  • 'add_deduction' => 'add_deduction',
  • 'add_employee' => 'add_employee',
  • 'continue' => 'continue',
  • 'deduction_footer' => 'deduction_footer',
  • 'deduction_header' => 'deduction_header',
  • 'deduction_links' => 'deduction_links',
  • 'delete' => 'delete',
  • 'delete_deduction' => 'delete_deduction',
  • 'delete_employee' => 'delete_employee',
  • 'display' => 'display',
  • 'edit' => 'edit',
  • 'employee_footer' => 'employee_footer',
  • 'employee_header' => 'employee_header',
  • 'employee_links' => 'employee_links',
  • 'js_menu' => 'js_menu',
  • 'list_employees' => 'list_employees',
  • 'menubar' => 'menubar',
  • 'save' => 'save',
  • 'save_as_new' => 'save_as_new',
  • 'save_deduction' => 'save_deduction',
  • 'save_employee' => 'save_employee',
  • 'search' => 'search',
  • 'search_deduction' => 'search_deduction',
  • 'search_employee' => 'search_employee',
  • 'section_menu' => 'section_menu',
  • 'update' => 'update',
  • 'update_deduction' => 'update_deduction',
  • 'update_employee' => 'update_employee',
  • 'Продовжити' => 'continue',
  • 'Видалити' => 'delete',
  • 'Зберегти' => 'save',
  • 'Зберегти_як_нове' => 'save_as_new',
  • 'Поновити' => 'update',
  • };
  • 1;