blob: 402c42473a28ecfeda7c391342eabe54d20e30d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
. ./testlib.sh
. ./pbuilder-modules
function test_information() {
log "I: test"
log "W: warning"
log "E: error"
}
expect_output "I: test
W: warning
E: error" test_information
testlib_summary
|