| blib/lib/URI/sqlite.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 6 | 6 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 4 | 4 | 100.0 |
| pod | 0 | 2 | 0.0 |
| total | 10 | 12 | 83.3 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package URI::sqlite; | ||||||
| 2 | 3 | 3 | 2715 | use base 'URI::_db'; | |||
| 3 | 6 | ||||||
| 3 | 475 | ||||||
| 3 | our $VERSION = '0.19'; | ||||||
| 4 | |||||||
| 5 | 4 | 4 | 0 | 8 | sub dbi_driver { 'SQLite' } | ||
| 6 | 40 | 40 | 0 | 14466 | sub canonical_engine { 'sqlite' } | ||
| 7 | sub _dbi_param_map { | ||||||
| 8 | 12 | 12 | 50 | return [ dbname => scalar shift->dbname ]; | |||
| 9 | } | ||||||
| 10 | |||||||
| 11 | 1; |