Emmanuel BENOîT
f4e38e4943
* A stored procedure which implements technologies has been added. It will mark a pending technology as implemented and remove the corresponding quantity of money from the empire, then add any newly available research items to the empire's research.
13 lines
No EOL
270 B
PL/PgSQL
13 lines
No EOL
270 B
PL/PgSQL
/*
|
|
* Test privileges on emp.technology_implement()
|
|
*/
|
|
BEGIN;
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'emp.technology_implement() - EXECUTE privilege' );
|
|
SELECT lives_ok( $$
|
|
SELECT emp.technology_implement( 1 , '' );
|
|
$$ );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |