File Coverage

backend/virt.pm
Criterion Covered Total %
statement 13 13 100.0
total 13 13 100.0


line stmt code
1   # Copyright 2016 SUSE LLC
2   # SPDX-License-Identifier: GPL-2.0-or-later
3    
4    
5   use Mojo::Base 'backend::baseclass', -signatures;
6 20 use bmwqemu;
  20  
  20  
7 20  
  20  
  20  
8   my $self = $class->SUPER::new;
9 42 $bmwqemu::vars{QEMURAM} //= 1024;
  42  
  42  
10 42 $bmwqemu::vars{QEMUCPUS} //= 1;
11 42 return $self;
12 42 }
13 42  
14   1;