fix: test: pylint

This commit is contained in:
rachmadaniHaryono 2021-01-09 15:29:00 +08:00
parent 7053330914
commit 61592a42dc
2 changed files with 5 additions and 5 deletions

2
buku
View File

@ -1658,7 +1658,7 @@ class BukuDb:
return False return False
def print_rec(self, index : int = 0 , low : int = 0, high : int = 0, is_range : bool = False) -> bool: def print_rec(self, index: int = 0, low: int = 0, high: int = 0, is_range: bool = False) -> bool:
"""Print bookmark details at index or all bookmarks if index is 0. """Print bookmark details at index or all bookmarks if index is 0.
A negative index behaves like tail, if title is blank show "Untitled". A negative index behaves like tail, if title is blank show "Untitled".

View File

@ -19,7 +19,7 @@ from unittest import mock
import pytest import pytest
import vcr import vcr
import yaml import yaml
from hypothesis import HealthCheck, example, given, settings from hypothesis import example, given, settings
from hypothesis import strategies as st from hypothesis import strategies as st
from buku import BukuDb, parse_tags, prompt from buku import BukuDb, parse_tags, prompt
@ -778,16 +778,16 @@ def test_compactdb(setup):
# delay_commit, y input_retval # delay_commit, y input_retval
[0, 0, True, 'y', (True, [])], [0, 0, True, 'y', (True, [])],
# delay_commit, non-y input_retval # delay_commit, non-y input_retval
[0, 0, True, 'x', (False, [tuple([x] + y + [0]) for x,y in zip(range(1, 4), TEST_BOOKMARKS)])], [0, 0, True, 'x', (False, [tuple([x] + y + [0]) for x, y in zip(range(1, 4), TEST_BOOKMARKS)])],
# non delay_commit, y input_retval # non delay_commit, y input_retval
[0, 0, False, 'y', (True, [])], [0, 0, False, 'y', (True, [])],
# non delay_commit, non-y input_retval # non delay_commit, non-y input_retval
[0, 0, False, 'x', (False, [tuple([x] + y + [0]) for x,y in zip(range(1, 4), TEST_BOOKMARKS)])], [0, 0, False, 'x', (False, [tuple([x] + y + [0]) for x, y in zip(range(1, 4), TEST_BOOKMARKS)])],
]) ])
def test_delete_rec_range_and_delay_commit(setup, tmp_path, low, high, delay_commit, input_retval, exp_res): def test_delete_rec_range_and_delay_commit(setup, tmp_path, low, high, delay_commit, input_retval, exp_res):
"""test delete rec, range and delay commit.""" """test delete rec, range and delay commit."""
bdb = BukuDb(dbfile=tmp_path / 'tmp.db') bdb = BukuDb(dbfile=tmp_path / 'tmp.db')
kwargs = {'is_range': True, 'low': low, 'high': high, 'delay_commit': delay_commit} kwargs = {'is_range': True, 'low': low, 'high': high, 'delay_commit': delay_commit}
kwargs['index'] = 0 kwargs['index'] = 0
# Fill bookmark # Fill bookmark