Mercurial > hg
annotate tests/test-verify @ 6987:d09e813b21e3
highlight: only pygmentize for HTML mimetypes
For non-html mimetypes it doesn't make much sense. This also fixes the
issue that highlight unconditionally adds a <link/> tag for its CSS to
the template's header (which is pointless in text/plain output).
author | Rocco Rutte <pdmef@gmx.net> |
---|---|
date | Fri, 05 Sep 2008 10:39:57 +0200 |
parents | 69aeaaaf6e07 |
children | baaa832fd253 |
rev | line source |
---|---|
6893 | 1 #!/bin/sh |
2 | |
3 echo % prepare repo | |
4 hg init | |
5 echo "some text" > FOO.txt | |
6 echo "another text" > bar.txt | |
7 echo "more text" > QUICK.txt | |
8 hg add | |
9 hg ci -d '0 0' -mtest1 | |
10 | |
11 echo | |
12 echo % verify | |
13 hg verify | |
14 | |
15 echo | |
16 echo % introduce some bugs in repo | |
17 cd .hg/store/data | |
18 mv _f_o_o.txt.i X_f_o_o.txt.i | |
19 mv bar.txt.i xbar.txt.i | |
20 rm _q_u_i_c_k.txt.i | |
21 | |
22 echo | |
23 echo % verify | |
24 hg verify | |
25 | |
6898
69aeaaaf6e07
store: simplify class hierarchy
Matt Mackall <mpm@selenic.com>
parents:
6893
diff
changeset
|
26 exit 0 |