blob: 56e4a2a34d64627ffd37234939413eafc50b902b [file] [log] [blame]
#!/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" "" ""