From bcfaffac240d74cd79bec3c2a9d3c144d215b495 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 22 Feb 2020 11:57:50 +0100 Subject: Added tests to the state package, and reworked the code around that --- state/state.go | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 state/state.go (limited to 'state/state.go') diff --git a/state/state.go b/state/state.go deleted file mode 100644 index d28a701..0000000 --- a/state/state.go +++ /dev/null @@ -1,21 +0,0 @@ -package state - -import ( - "bareos-zabbix-check/config" - "bareos-zabbix-check/job" -) - -// maxNameLength : the maximum length of a string, hard coded in bareos -const maxNameLength = 128 - -// State is an object for manipulating a bareos state file -type State struct { - config *config.Config - header header - jobs []job.Job -} - -// Jobs returns the jobs from the state file -func (s *State) Jobs() []job.Job { - return s.jobs -} -- cgit v1.2.3