File Coverage

lib/UR/Namespace/Command/Define/Datasource/Oracle.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 14 85.7


line stmt bran cond sub pod time code
1             package UR::Namespace::Command::Define::Datasource::Oracle;
2              
3 2     2   1159 use strict;
  2         3  
  2         57  
4 2     2   7 use warnings;
  2         2  
  2         55  
5 2     2   7 use UR;
  2         3  
  2         13  
6             our $VERSION = "0.46"; # UR $VERSION;
7              
8             UR::Object::Type->define(
9             class_name => __PACKAGE__,
10             is => "UR::Namespace::Command::Define::Datasource::RdbmsWithAuth",
11             doc => "Add an Oracle data source to the current namespace."
12             );
13              
14             sub _data_source_sub_class_name {
15 0     0     'UR::DataSource::Oracle'
16             }
17              
18             1;
19