aboutsummaryrefslogtreecommitdiff
path: root/t/t0006-date.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2010-07-04 06:48:35 -0400
committerJunio C Hamano <gitster@pobox.com>2010-07-05 11:54:50 -0700
commit6b097788f88a29d6e171af7a9e87117cf992e833 (patch)
tree84766fade9042215098fedba4aa698b6190dee51 /t/t0006-date.sh
parent2c64034491e302fa12ac86365dd872d9a75dc855 (diff)
downloadgit-6b097788f88a29d6e171af7a9e87117cf992e833.tar.gz
git-6b097788f88a29d6e171af7a9e87117cf992e833.tar.xz
t0006: test timezone parsing
Previously, test-date simply ignored the parsed timezone and told show_date() to use UTC. Instead, let's print out what we actually parsed. While we're at it, let's make it easy for tests to work in a specific timezone. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0006-date.sh')
-rwxr-xr-xt/t0006-date.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/t0006-date.sh b/t/t0006-date.sh
index 75b02af86..3ea4f9eff 100755
--- a/t/t0006-date.sh
+++ b/t/t0006-date.sh
@@ -28,8 +28,8 @@ check_show 31449600 '12 months ago'
check_parse() {
echo "$1 -> $2" >expect
- test_expect_${3:-success} "parse date ($1)" "
- test-date parse '$1' >actual &&
+ test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
+ TZ=${3:-$TZ} test-date parse '$1' >actual &&
test_cmp expect actual
"
}
@@ -38,6 +38,7 @@ check_parse 2008 bad
check_parse 2008-02 bad
check_parse 2008-02-14 bad
check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
+check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
check_approxidate() {
echo "$1 -> $2 +0000" >expect