##// END OF EJS Templates
revlog: subclass the new `repository.iverifyproblem` Protocol class...
revlog: subclass the new `repository.iverifyproblem` Protocol class This is the same transformation as 3a90a6fd710d did for dirstate, but the CamelCase naming was already cleaned up here. We shouldn't have to explicitly subclass, but I'm doing so to test the interplay of regular attributes and the `attrs` class. Also, PyCharm has a nifty feature that puts a jump point in the gutter to navigate back and forth between the base class and subclasses (and override functions and base class functions) when there's an explicit subclassing. Additionally, PyCharm will immediately flag signature mismatches without a 40m pytype run.

File last commit:

r45060:9e631081 default
r53365:4ef6dbc2 default
Show More
test-remotefilelog-hgweb.t
38 lines | 1013 B | text/troff | Tads3Lexer
/ tests / test-remotefilelog-hgweb.t
Augie Fackler
tests: add test for remotefilelog interactions with hgweb...
r45059 #require no-windows serve
$ . "$TESTDIR/remotefilelog-library.sh"
$ cat >> $HGRCPATH <<EOF
> [extensions]
> remotefilelog=
> share=
> EOF
$ hg init master
$ cd master
$ cat >> .hg/hgrc <<EOF
> [remotefilelog]
> server=True
> EOF
$ echo x > x
$ hg commit -qAm x
$ cd ..
$ hgcloneshallow ssh://user@dummy/master wdir --noupdate -q
$ cd wdir
$ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log
$ cat hg.pid >> $DAEMON_PIDS
Augie Fackler
remotefilelog: add fake heads() method that allows viewing a file in hgweb...
r45060 $ get-with-headers.py localhost:$HGPORT 'file/tip/x' | head -n 10
200 Script output follows
Augie Fackler
tests: add test for remotefilelog interactions with hgweb...
r45059
Augie Fackler
remotefilelog: add fake heads() method that allows viewing a file in hgweb...
r45060 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<link rel="icon" href="/static/hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow" />
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
<script type="text/javascript" src="/static/mercurial.js"></script>
Augie Fackler
tests: add test for remotefilelog interactions with hgweb...
r45059