diff options
Diffstat (limited to 'tests/hostname.test')
-rw-r--r-- | tests/hostname.test | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/hostname.test b/tests/hostname.test new file mode 100644 index 00000000..11948458 --- /dev/null +++ b/tests/hostname.test @@ -0,0 +1,18 @@ +#!/bin/bash + +# Copyright 2014 Divya Kothari <divya.s.kothari@gmail.com> +# Copyright 2014 Naha Maggu <maggu.neha@gmail.com> + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +# Get system hostname +hostnameExe=`which hostname` +hostnameOut=`$hostnameExe` + +# New hostname +NewHostname="NewHostName.system" + +testing "Hostname - Get" "hostname" "$hostnameOut\n" "" "" +testing "Hostname - Set, Get and then Reset" "hostname $NewHostname; hostname; hostname $hostnameOut; hostname" "$NewHostname\n$hostnameOut\n" "" "" |