##// END OF EJS Templates
journal: show that we do not track deletion...
marmoute -
r51700:8ef9cdff default
parent child Browse files
Show More
@@ -84,6 +84,16 b' Test that bookmarks are tracked'
84 cb9a9f314b8b book -f bar
84 cb9a9f314b8b book -f bar
85 1e6c11564562 book -r tip bar
85 1e6c11564562 book -r tip bar
86
86
87 Test that we tracks bookmark deletion
88
89 $ hg book -r . babar
90 $ hg book -f -r .~1 babar
91 $ hg book -d babar
92 $ hg journal babar
93 previous locations of 'babar':
94 cb9a9f314b8b book -f -r '.~1' babar
95 1e6c11564562 book -r . babar
96
87 Test that bookmarks and working copy tracking is not mixed
97 Test that bookmarks and working copy tracking is not mixed
88
98
89 $ hg journal
99 $ hg journal
@@ -99,6 +109,8 b' Test that you can list all entries as we'
99 $ hg journal --all
109 $ hg journal --all
100 previous locations of the working copy and bookmarks:
110 previous locations of the working copy and bookmarks:
101 1e6c11564562 baz book -r tip baz
111 1e6c11564562 baz book -r tip baz
112 cb9a9f314b8b babar book -f -r '.~1' babar
113 1e6c11564562 babar book -r . babar
102 1e6c11564562 bar up
114 1e6c11564562 bar up
103 1e6c11564562 . up
115 1e6c11564562 . up
104 cb9a9f314b8b bar book -f bar
116 cb9a9f314b8b bar book -f bar
@@ -127,6 +139,8 b' Test that you can list all entries as we'
127 $ hg journal "re:ba."
139 $ hg journal "re:ba."
128 previous locations of 're:ba.':
140 previous locations of 're:ba.':
129 1e6c11564562 baz book -r tip baz
141 1e6c11564562 baz book -r tip baz
142 cb9a9f314b8b babar book -f -r '.~1' babar
143 1e6c11564562 babar book -r . babar
130 1e6c11564562 bar up
144 1e6c11564562 bar up
131 cb9a9f314b8b bar book -f bar
145 cb9a9f314b8b bar book -f bar
132 1e6c11564562 bar book -r tip bar
146 1e6c11564562 bar book -r tip bar
@@ -136,6 +150,8 b' Test that verbose, JSON, template and co'
136 $ hg journal --verbose --all
150 $ hg journal --verbose --all
137 previous locations of the working copy and bookmarks:
151 previous locations of the working copy and bookmarks:
138 000000000000 -> 1e6c11564562 foobar baz 1970-01-01 00:00 +0000 book -r tip baz
152 000000000000 -> 1e6c11564562 foobar baz 1970-01-01 00:00 +0000 book -r tip baz
153 1e6c11564562 -> cb9a9f314b8b foobar babar 1970-01-01 00:00 +0000 book -f -r '.~1' babar
154 000000000000 -> 1e6c11564562 foobar babar 1970-01-01 00:00 +0000 book -r . babar
139 cb9a9f314b8b -> 1e6c11564562 foobar bar 1970-01-01 00:00 +0000 up
155 cb9a9f314b8b -> 1e6c11564562 foobar bar 1970-01-01 00:00 +0000 up
140 cb9a9f314b8b -> 1e6c11564562 foobar . 1970-01-01 00:00 +0000 up
156 cb9a9f314b8b -> 1e6c11564562 foobar . 1970-01-01 00:00 +0000 up
141 1e6c11564562 -> cb9a9f314b8b foobar bar 1970-01-01 00:00 +0000 book -f bar
157 1e6c11564562 -> cb9a9f314b8b foobar bar 1970-01-01 00:00 +0000 book -f bar
General Comments 0
You need to be logged in to leave comments. Login now