• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

RexOps / Rex / 13164675022

05 Feb 2025 07:03PM UTC coverage: 51.012% (+0.02%) from 50.997%
13164675022

push

github

ferki
Merge pull request #1640 from RexOps/fix_typos

Correct typos detected by lintian

10082 of 19764 relevant lines covered (51.01%)

99.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

64.29
/lib/Rex/Virtualization/Base.pm
1
#
2
# (c) Jan Gehring <jan.gehring@gmail.com>
3
#
4

5
package Rex::Virtualization::Base;
6

7
use v5.12.5;
3✔
8
use warnings;
3✔
9

10
our $VERSION = '9999.99.99_99'; # VERSION
11

12
sub new {
13
  my $that  = shift;
1✔
14
  my $proto = ref($that) || $that;
1✔
15
  my $self  = {@_};
1✔
16

17
  bless( $self, $proto );
1✔
18

19
  return $self;
1✔
20
}
21

22
sub execute {
23
  my ( $self, $action, $vmname, @opt ) = @_;
1✔
24

25
  my $mod = ref($self) . "::$action";
×
26
  eval "use $mod;";
×
27

28
  if ($@) {
×
29
    Rex::Logger::info("No action $action available.");
×
30
    die("No action $action available.");
×
31
  }
32

33
  return $mod->execute( $vmname, @opt );
2✔
34

35
}
36

37
1;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc