##// END OF EJS Templates
Addes test for error messages when operating on non-existing files.
Thomas Arendsen Hein -
r909:e2e7a246 default
parent child Browse files
Show More
@@ -0,0 +1,9 b''
1 #!/bin/sh
2
3 hg init
4
5 echo "Is there an error message when trying to diff non-existing files?"
6 hg diff not found
7
8 echo "Is there an error message when trying to add non-existing files?"
9 hg add not found
@@ -0,0 +1,9 b''
1 + hg init
2 Is there an error message when trying to diff non-existing files?
3 + hg diff not found
4 not: No such file or directory
5 found: No such file or directory
6 Is there an error message when trying to add non-existing files?
7 + hg add not found
8 not: No such file or directory
9 found: No such file or directory
General Comments 0
You need to be logged in to leave comments. Login now