Mercurial > hg
comparison tests/test-commit @ 1196:3738e85ead07
Make date/timezone validation in changelog.add more robust. Add test.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Sat, 03 Sep 2005 23:28:15 -0700 |
parents | |
children | cb4c423cbb38 |
comparison
equal
deleted
inserted
replaced
1195:f92af8d53330 | 1196:3738e85ead07 |
---|---|
1 #!/bin/sh | |
2 | |
3 hg init test | |
4 cd test | |
5 echo foo > foo | |
6 hg add foo | |
7 hg commit -d '0 0' -m commit-1 | |
8 echo foo >> foo | |
9 hg commit -d '1 4444444' -m commit-3 | |
10 hg commit -d '1 15.1' -m commit-4 | |
11 hg commit -d 'foo bar' -m commit-5 | |
12 hg commit -d ' 1 4444' -m commit-6 | |
13 hg commit -d '111111111111 0' -m commit-7 |