We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1502464 commit f6adae2Copy full SHA for f6adae2
couchdb/tests/client.py
@@ -597,6 +597,11 @@ def test_iter_view(self):
597
view = client.PermanentView(self.db.resource('_all_docs').url, '_all_docs')
598
self.assertEqual(len(list(view)), 1)
599
600
+ def test_update_seq(self):
601
+ self.db['foo'] = {}
602
+ rows = self.db.view('_all_docs', update_seq=True)
603
+ self.assertEqual(rows.update_seq, 1)
604
+
605
def test_tmpview_repr(self):
606
mapfunc = "function(doc) {emit(null, null);}"
607
view = client.TemporaryView(self.db.resource('_temp_view'), mapfunc)
0 commit comments