File Coverage

blib/lib/DesktopWorkspaceRole/Spec/Basic.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DesktopWorkspaceRole::Spec::Basic;
2              
3 3     3   218147 use strict;
  3         4  
  3         90  
4 3     3   11 use warnings;
  3         3  
  3         127  
5              
6 3     3   410 use Role::Tiny;
  3         4850  
  3         18  
7 3     3   890 use Role::Tiny::With;
  3         294  
  3         307  
8              
9             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
10             our $DATE = '2026-03-29'; # DATE
11             our $DIST = 'DesktopWorkspace'; # DIST
12             our $VERSION = '1.0.0'; # VERSION
13              
14             # constructor
15             requires 'new';
16              
17             # other required methods
18             requires 'items';
19             requires 'kde_activity';
20             requires 'new_browser_window';
21              
22             # mixin
23             #with 'Role::TinyCommons::Iterator::Resettable';
24             #with 'Role::TinyCommons::Collection::GetItemByPos';
25              
26             # provides
27              
28             ###
29              
30             1;
31             # ABSTRACT: Required methods for all DesktopWorkspace::* modules
32              
33             __END__