16 lines
749 B
MySQL
16 lines
749 B
MySQL
|
-- Verify numerus:available_expense_status on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to numerus;
|
||
|
|
||
|
select 1 / count(*) from expense_status where expense_status = 'pending' and name ='Pending';
|
||
|
select 1 / count(*) from expense_status where expense_status = 'paid' and name ='Paid';
|
||
|
|
||
|
select 1 / count(*) from expense_status_i18n where expense_status = 'pending' and name ='Pendent' and lang_tag = 'ca';
|
||
|
select 1 / count(*) from expense_status_i18n where expense_status = 'pending' and name ='Pendiente' and lang_tag = 'es';
|
||
|
select 1 / count(*) from expense_status_i18n where expense_status = 'paid' and name ='Pagada' and lang_tag= 'ca';
|
||
|
select 1 / count(*) from expense_status_i18n where expense_status = 'paid' and name ='Pagada' and lang_tag= 'es';
|
||
|
|
||
|
rollback;
|