diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-13 11:21:45 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-15 10:16:16 +0000 |
commit | 142b718d9bce0be499e8426c27bce848728559a8 (patch) | |
tree | bd0ba4e9749b3f2b18bf4858cf276eb705cf6dbc /t | |
parent | 311c138dc394e6771517f339f234afff80ab54f6 (diff) | |
download | pbuilder-142b718d9bce0be499e8426c27bce848728559a8.tar pbuilder-142b718d9bce0be499e8426c27bce848728559a8.tar.gz |
modules: add 3 log.{i,w,e} functions to be used instead of log()
Diffstat (limited to 't')
-rwxr-xr-x | t/test_pbuilder-modules | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/test_pbuilder-modules b/t/test_pbuilder-modules index 9e1f6e0..52a38ac 100755 --- a/t/test_pbuilder-modules +++ b/t/test_pbuilder-modules @@ -18,6 +18,15 @@ expect_output "I: test W: warning E: error" test_information +function test_log() { + log.i "info" + log.w "warn" + log.e "error" +} +expect_output "I: info +W: warn +E: error" test_log + # test the non-copy case function test_conditional_cp_a() { ( |