File Coverage

OpenQA/Isotovideo/Interface.pm
Criterion Covered Total %
statement 3 3 100.0
total 3 3 100.0


line stmt code
1   # Copyright 2018-2021 SUSE LLC
2   # SPDX-License-Identifier: GPL-2.0-or-later
3    
4    
5   use Mojo::Base -strict, -signatures;
6 31  
  31  
  31  
7   # version of the test API and the API relevant to the worker
8   # -> increment on every change of such APIs
9   # -> never move that variable to another place (when refactoring)
10   # because it may be accessed by the tests itself
11   our $version = 25;
12    
13   # major version of the (web socket) API relevant to the developer mode
14   # -> increment when making non-backward compatible changes to that API
15   our $developer_mode_major_version = 1;
16   # minor version of the (web socket) API relevant to the developer mode
17   # -> reset to 0 when making non-backward compatible changes to that API
18   # -> increment when making backward compatible changes to that API
19   our $developer_mode_minor_version = 1;
20    
21   1;