push
travis-ci
<a href="https://github.com/ingydotnet/yaml-old-pm/commit/<a class=hub.com/ingydotnet/yaml-old-pm/commit/c8e071fc87d98d2a92929b86616a82cd36001610">c8e071fc8<a href="https://github.com/ingydotnet/yaml-old-pm/commit/c8e071fc87d98d2a92929b86616a82cd36001610">">This starting commit is from yaml-pm tag 1.23. The sha1 for that point is </a><a class="double-link" href="https://github.com/ingydotnet/yaml-old-pm/commit/<a class="double-link" href="https://github.com/ingydotnet/yaml-old-pm/commit/a8d33fd7ffcd4c523671604380f8426188964b8e">a8d33fd7f</a>">a8d33fd7f</a><a href="https://github.com/ingydotnet/yaml-old-pm/commit/c8e071fc87d98d2a92929b86616a82cd36001610">. That sha1 is tagged yaml-pm-1.23 in this repository.
1719 of 1719 new or added lines in 61 files covered. (100.0%)
1665 of 1772 relevant lines covered (93.96%)
1934.14 hits per line
|
use strict; use warnings; |
352✔ |
2 |
package YAML::Tag; |
|
3 |
|
|
|
use overload '""' => sub { ${$_[0]} }; |
352✔ |
5 |
|
|
6 |
sub new { |
|
|
my ($class, $self) = @_; |
776✔ |
|
bless \$self, $class |
776✔ |
9 |
}
|
|
10 |
|
|
11 |
sub short {
|
|
|
${$_[0]}
|
784✔ |
13 |
} |
|
14 |
|
|
15 |
sub canonical { |
|
|
${$_[0]}
|
× |
17 |
} |
|
18 |
|
|
19 |
1;
|