# HG changeset patch # User Rob Landley # Date 1369679943 18000 # Node ID 9a732a0f8ddc36ee28bf58fbeb3d8af71355155a # Parent 24ee3b04af3be7eb933ddf7160d55a5c2ecd0aeb Tests for touch (needs more work). diff -r 24ee3b04af3b -r 9a732a0f8ddc scripts/test/touch.test --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/test/touch.test Mon May 27 13:39:03 2013 -0500 @@ -0,0 +1,24 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +testing "touch" "touch walrus && [ -e walrus ] && echo yes" "yes\n" "" "" +testing "touch 1 2 3" "touch one two three && rm one two three && echo yes" "yes\n" \ + "" "" +testing "touch -c" "touch -c walrus && [ -e walrus ] && echo yes" "yes\n" "" "" +testing "touch -c missing" "touch -c warrus && [ ! -e warrus ] && echo yes" \ + "yes\n" "" "" + +# This isn't testing fraction of a second because I dunno how to read it back + +testing "touch -d" \ + "touch -d 2009-02-13T23:31:30.12Z walrus && date -r walrus +%s.%N" "1234567890\n" \ + "" "" +#testing "touch -t" "touch -t 200902132331.42 +#testing "touch -r" +#testing "touch -a" +#testing "touch -m" +#testing "touch -am" +rm walrus