Thread Testing and SQL (1 answers)
Opened by Old_Gray_Bear at 2010-02-17 03:48

Corion
 2010-02-17 22:40
#7 #7
User since
2010-02-17
2 Artikel
Janitor
[default_avatar]
Personally, I write most of my tests for views etc. as :memory: database in SQLite and test them from within Perl with the Test::More framework.

I once tried to do tests by running sqlite.exe and having

SELECT 'ok' WHERE ...

statements to generate TAP output directly from SQL, but in the end
that proved to be too much hassle.

View full thread Testing and SQL