sapling/tests/test-tweakdefaults-blame.t
Jun Wu 8a3a99ba21 hgext: move single file extensions to hgext3rd
Summary:
Be a better citizen under system python path.

Fix all tests issues and change setup.py to use glob pattern to include
all extensions.

Test Plan:
Run tests and `make local`.
Also build and install the package and run `hg sl` in major repos.

Reviewers: #mercurial, ttung, rmcelroy

Reviewed By: rmcelroy

Subscribers: rmcelroy, durham, mjpieters

Differential Revision: https://phabricator.intern.facebook.com/D3534311

Signature: t1:3534311:1468275426:fe122646c8bd6c541e1889e73e9df28f86747ff2
2016-07-08 13:15:42 +01:00

45 lines
1.6 KiB
Perl

$ extpath=`dirname $TESTDIR`
$ cp $extpath/hgext3rd/tweakdefaults.py $TESTTMP # use $TESTTMP substitution in message
$ cat >> $HGRCPATH << EOF
> [extensions]
> tweakdefaults=$TESTTMP/tweakdefaults.py
> EOF
Test wrapped blame to be able to handle the usual command line attributes
$ hg init repo
$ cd repo
$ echo "line one" > a
$ echo "line two" >> a
$ hg ci -Am "Differential Revision: https://phabricator.fb.com/D111111"
adding a
$ echo "line three" >> a
$ hg ci -Am "Differential Revision: https://phabricator.fb.com/D222222"
$ hg blame a
37b9ff139054:line one
37b9ff139054:line two
05d474df3f59:line three
$ hg blame --user a
37b9ff139054: test:line one
37b9ff139054: test:line two
05d474df3f59: test:line three
$ hg blame --date a
37b9ff139054:Thu, 01 Jan 1970 00:00:00 +0000:line one
37b9ff139054:Thu, 01 Jan 1970 00:00:00 +0000:line two
05d474df3f59:Thu, 01 Jan 1970 00:00:00 +0000:line three
$ hg blame --number a
0 :line one
0 :line two
1 :line three
$ hg blame --file --line-number a
37b9ff139054:a: 1:line one
37b9ff139054:a: 2:line two
05d474df3f59:a: 3:line three
$ hg blame --user --date --line-number a
37b9ff139054: test:Thu, 01 Jan 1970 00:00:00 +0000: 1:line one
37b9ff139054: test:Thu, 01 Jan 1970 00:00:00 +0000: 2:line two
05d474df3f59: test:Thu, 01 Jan 1970 00:00:00 +0000: 3:line three
$ hg blame -p a
37b9ff139054:D111111 :line one
37b9ff139054:D111111 :line two
05d474df3f59:D222222 :line three