Show
Ignore:
Timestamp:
06/01/09 19:37:06 (3 years ago)
Author:
fumanchu
Message:

Fix for #4 (Allow VALUES Query in assert_rows()).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/epic/test/test_core.sql

    r28 r30  
    2727  PERFORM test.assert_equal(t, 'EXECUTE myfoo'); 
    2828   
     29  -- Test VALUES 
     30  SELECT INTO t * FROM test.statement('VALUES (99, ''foo'')'); 
     31  PERFORM test.assert_equal(t, 'VALUES (99, ''foo'')'); 
     32  SELECT INTO t * FROM test.statement('VALUES(99, ''foo'')'); 
     33  PERFORM test.assert_equal(t, 'VALUES(99, ''foo'')'); 
     34   
    2935  PERFORM test.pass(); 
    3036END;