File Coverage

blib/lib/SemanticWeb/Schema/Dentist.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 1     1   1328 use utf8;
  1         15  
  1         5  
2              
3             package SemanticWeb::Schema::Dentist;
4              
5             # ABSTRACT: A dentist.
6              
7 1     1   567 use Moo;
  1         10975  
  1         4  
8              
9             extends qw/ SemanticWeb::Schema::MedicalBusiness SemanticWeb::Schema::MedicalOrganization /;
10              
11              
12 1     1   1919 use MooX::JSON_LD 'Dentist';
  1         17154  
  1         24  
13 1     1   119528 use Ref::Util qw/ is_plain_hashref /;
  1         584  
  1         69  
14             # RECOMMEND PREREQ: Ref::Util::XS
15              
16 1     1   432 use namespace::autoclean;
  1         13740  
  1         4  
17              
18             our $VERSION = 'v15.0.0';
19              
20              
21              
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             SemanticWeb::Schema::Dentist - A dentist.
34              
35             =head1 VERSION
36              
37             version v15.0.0
38              
39             =head1 DESCRIPTION
40              
41             A dentist.
42              
43             =head1 SEE ALSO
44              
45             L<SemanticWeb::Schema::MedicalOrganization>
46              
47             =head1 SOURCE
48              
49             The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
50             and may be cloned from L<git://github.com/robrwo/SemanticWeb-Schema.git>
51              
52             =head1 BUGS
53              
54             Please report any bugs or feature requests on the bugtracker website
55             L<https://github.com/robrwo/SemanticWeb-Schema/issues>
56              
57             When submitting a bug or request, please include a test-file or a
58             patch to an existing test-file that illustrates the bug or desired
59             feature.
60              
61             =head1 AUTHOR
62              
63             Robert Rothenberg <rrwo@cpan.org>
64              
65             =head1 COPYRIGHT AND LICENSE
66              
67             This software is Copyright (c) 2018-2022 by Robert Rothenberg.
68              
69             This is free software, licensed under:
70              
71             The Artistic License 2.0 (GPL Compatible)
72              
73             =cut