| lib/Kwiki/Toolbar.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 1 | 3 | 33.3 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 2 | 4 | 50.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Kwiki::Toolbar; | ||||||
| 2 | 1 | 1 | 1965 | use Kwiki::Pane -Base; | |||
| 0 | |||||||
| 0 | |||||||
| 3 | |||||||
| 4 | const class_id => 'toolbar'; | ||||||
| 5 | const pane_template => 'toolbar_pane.html'; | ||||||
| 6 | const css_file => 'toolbar.css'; | ||||||
| 7 | const config_file => 'toolbar.yaml'; | ||||||
| 8 | |||||||
| 9 | sub order { | ||||||
| 10 | @{$self->config->toolbar_order}; | ||||||
| 11 | } | ||||||
| 12 | |||||||
| 13 | __DATA__ |