comparison tests/test-extension.t @ 44953:50005af3c7a8

tests: remove unused creation of file and outdated text It was forgotten to remove this in fb0de0bcd297.
author Manuel Jacob <me@manueljacob.de>
date Fri, 12 Jun 2020 23:43:56 +0200
parents c1850798f995
children a28d1eca6507
comparison
equal deleted inserted replaced
44952:a4438263b228 44953:50005af3c7a8
1850 $ hg help bookmarks | grep GREPME 1850 $ hg help bookmarks | grep GREPME
1851 hg bookmarks [OPTIONS]... [NAME]... GREPME [--foo] [-x] 1851 hg bookmarks [OPTIONS]... [NAME]... GREPME [--foo] [-x]
1852 GREPME make sure that this is in the help! 1852 GREPME make sure that this is in the help!
1853 $ cd .. 1853 $ cd ..
1854 1854
1855 Show deprecation warning for the use of cmdutil.command
1856
1857 $ cat > nonregistrar.py <<EOF
1858 > from mercurial import cmdutil
1859 > cmdtable = {}
1860 > command = cmdutil.command(cmdtable)
1861 > @command(b'foo', [], norepo=True)
1862 > def foo(ui):
1863 > pass
1864 > EOF
1865
1866 Prohibit the use of unicode strings as the default value of options 1855 Prohibit the use of unicode strings as the default value of options
1867 1856
1868 $ hg init $TESTTMP/opt-unicode-default 1857 $ hg init $TESTTMP/opt-unicode-default
1869 1858
1870 $ cat > $TESTTMP/test_unicode_default_value.py << EOF 1859 $ cat > $TESTTMP/test_unicode_default_value.py << EOF