diff --git a/plsql/texttest_fixture.sql b/plsql/texttest_fixture.sql index 59a8f39c..6d2bbeef 100644 --- a/plsql/texttest_fixture.sql +++ b/plsql/texttest_fixture.sql @@ -1,13 +1,15 @@ +SET SERVEROUTPUT ON; + DELETE FROM item; DECLARE l_days NUMBER(3); - CURSOR c_items IS + CURSOR c_items IS SELECT name, sell_in, quality FROM item; l_item c_items%ROWTYPE; BEGIN DBMS_OUTPUT.PUT_LINE('OMGHAI!'); - + new_item('+5 Dexterity Vest', 10, 20); new_item('Aged Brie', 2, 0); new_item('Elixir of the Mongoose', 5, 7); @@ -18,7 +20,7 @@ BEGIN new_item('Backstage passes to a TAFKAL80ETC concert', 5, 49); -- this conjured item does not work properly yet ; new_item('Conjured Mana Cake', 3, 6); - + l_days := 2; FOR i IN 0 .. l_days - 1