Page MenuHomeSoftware Heritage

test_utils.py
No OneTemporary

test_utils.py

# Copyright (C) 2020 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from swh.dataset.utils import SQLiteSet
def test_sqliteset(tmp_path):
f = tmp_path / "test.sqlite3"
with SQLiteSet(f) as s:
assert s.add(b"a")
assert not s.add(b"a")
assert s.add(b"b")

File Metadata

Mime Type
text/x-python
Expires
Fri, Jul 4, 12:52 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3361857

Event Timeline