e7951ee721
also: better error messages in tests
7 lines
253 B
SQL
7 lines
253 B
SQL
set url = 'http://localhost:' || $echo_port || '/hello_world';
|
|
set res = sqlpage.fetch($url);
|
|
select 'text' as component,
|
|
case
|
|
when $res LIKE 'GET /hello_world%' then 'It works !'
|
|
else 'It failed ! Got: ' || $res
|
|
end as contents; |