mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
7 lines
184 B
PL/PgSQL
7 lines
184 B
PL/PgSQL
create or replace function test_case_can_create_item() returns void as $$
|
|
begin
|
|
perform test_assertTrue('hello', true);
|
|
end;
|
|
$$ language plpgsql;
|
|
|
|
select * from test_run_all(); |