Emmanuel BENOîT
04e550709a
* Added a new update that computes the amount of resources possessed and owed by empires. At the moment this computation ignores fleets, as their upkeep does not use the resource system.
11 lines
No EOL
294 B
PL/PgSQL
11 lines
No EOL
294 B
PL/PgSQL
/*
|
|
* Test privileges on sys.process_empire_resources_updates()
|
|
*/
|
|
BEGIN;
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'sys.process_empire_resources_updates() - Privileges' );
|
|
SELECT throws_ok( 'SELECT sys.process_empire_resources_updates( 1 )' , 42501 );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |