tests/test-revset.t
changeset 32798 573b792872c1
parent 32699 f75d0aa5dc83
child 32799 b36ec65ea583
--- a/tests/test-revset.t	Sat Jun 10 20:14:23 2017 +0900
+++ b/tests/test-revset.t	Sat Jun 10 18:04:56 2017 +0900
@@ -986,6 +986,9 @@
   $ log 'keyword(issue)'
   6
   $ log 'keyword("test a")'
+
+Test first (=limit) and last
+
   $ log 'limit(head(), 1)'
   0
   $ log 'limit(author("re:bob|test"), 3, 5)'
@@ -998,6 +1001,16 @@
   $ log 'limit(all(), 1, -1)'
   hg: parse error: negative offset
   [255]
+
+  $ log 'last(all(), 0)'
+  $ log 'last(all(), 1)'
+  9
+  $ log 'last(all(), 2)'
+  8
+  9
+
+Test matching
+
   $ log 'matching(6)'
   6
   $ log 'matching(6:7, "phase parents user date branch summary files description substate")'