File: utils_test.go

package info (click to toggle)
golang-github-keltia-archive 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 21
file content (25 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package archive

import (
	"testing"
)

func TestVerbose_No(t *testing.T) {
	verbose("no")
}

func TestVerbose_Yes(t *testing.T) {
	SetVerbose()
	verbose("yes")
	fVerbose = false
}

func TestDebug_No(t *testing.T) {
	debug("no")
}

func TestDebug_Yes(t *testing.T) {
	SetDebug()
	debug("yes")
	fDebug = false
}