sapling/tests/test-tweakdefaults-opawarecommands.t
Jun Wu 4a936cee21 codemod: remove extpath in tests
Summary:
Previously, the following pattern is common in our tests:

```
   $ extpath=`dirname $TESTDIR`
   $ cp $extpath/hgext3rd/name.py $TESTTMP # use $TESTTMP substitution in message
   $ cat >> $HGRCPATH<<EOF
   > [extensions]
   > name=$TESTTMP/name.py
   > EOF
```

Now, it gets simplified to:

```
   $ cat >> $HGRCPATH<<EOF
   > [extensions]
   > name=$TESTDIR/../hgext3rd/name.py
   > EOF
```

This removes unnecessary `dirname` and `cp`.

Also fixed a regex that does not match `bytes`:

```
-  transferred 268 bytes in [\d.]+ seconds \([\d.]+ KB/sec\) (re)
+  transferred 268 bytes in 0.3 seconds (939 bytes/sec)
```

Test Plan: arc unit

Reviewers: #mercurial, phillco

Reviewed By: phillco

Subscribers: medson, mjpieters

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

Signature: t1:5270897:1497663052:bf860a0b480c751b1e4b53cebf6526193f0f6652
2017-06-16 18:31:25 -07:00

37 lines
961 B
Perl

$ cat >> $HGRCPATH << EOF
> [extensions]
> tweakdefaults=$TESTDIR/../hgext3rd/tweakdefaults.py
> fbamend=$TESTDIR/../hgext3rd/fbamend
> rebase=
> [experimental]
> evolution=createmarkers
> EOF
Setup repo
$ hg init opawarerepo
$ cd opawarerepo
$ echo root > root && hg ci -Am root
adding root
Check amend metadata
$ echo a > a && hg ci -Am a
adding a
$ echo aa > a && hg amend
$ hg debugobsolete
.* {'operation': 'amend', 'user': 'test'} (re)
.* {'operation': 'amend', 'user': 'test'} (re)
Check rebase metadata
$ hg book -r . destination
$ hg up 0
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
$ echo b > b && hg ci -Am b
adding b
created new head
$ hg rebase -r . -d destination
rebasing 4:1e9a3c00cbe9 "b" (tip)
$ hg debugobsolete
.* {'operation': 'amend', 'user': 'test'} (re)
.* {'operation': 'amend', 'user': 'test'} (re)
.* {'operation': 'rebase', 'user': 'test'} (re)