added more tests, fixed setup, removed requirements.txt and added .travis.yml
This commit is contained in:
parent
23ed7391b2
commit
c0779bed73
4
.travis.yml
Normal file
4
.travis.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.7.1"
|
||||||
|
script: make test
|
7
setup.py
7
setup.py
@ -1,5 +1,10 @@
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='deadsimplekv',
|
setup(name='deadsimplekv',
|
||||||
version='0.0.0',
|
version='0.0.0',
|
||||||
py_modules=['deadsimplekv'],
|
description='Very simple key-value store for Python',
|
||||||
|
author='Kevin Froman',
|
||||||
|
author_email='beardog@firemail.cc',
|
||||||
|
url='https://github.com/beardog108/deadsimplekv',
|
||||||
|
packages=['deadsimplekv'],
|
||||||
)
|
)
|
@ -1,3 +1,20 @@
|
|||||||
|
'''
|
||||||
|
DeadSimpleKv. An extremely simple key-value storage system with cache
|
||||||
|
Copyright (C) 2019 Kevin Froman
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
'''
|
||||||
import sys, os, unittest, json, time, math, uuid
|
import sys, os, unittest, json, time, math, uuid
|
||||||
sys.path.append(os.path.dirname(os.path.realpath(__file__)) + "/../")
|
sys.path.append(os.path.dirname(os.path.realpath(__file__)) + "/../")
|
||||||
import deadsimplekv
|
import deadsimplekv
|
||||||
@ -33,6 +50,16 @@ class TestInit(unittest.TestCase):
|
|||||||
kv2 = deadsimplekv.DeadSimpleKV(test_id)
|
kv2 = deadsimplekv.DeadSimpleKV(test_id)
|
||||||
self.assertIsNone(kv2.get('meme'))
|
self.assertIsNone(kv2.get('meme'))
|
||||||
|
|
||||||
|
def test_manual_refresh(self):
|
||||||
|
test_id = get_test_id()
|
||||||
|
kv = deadsimplekv.DeadSimpleKV(test_id, refresh_seconds=None)
|
||||||
|
kv2 = deadsimplekv.DeadSimpleKV(test_id)
|
||||||
|
|
||||||
|
kv2.put('test', True)
|
||||||
|
self.assertIsNone(kv.get('test'))
|
||||||
|
kv.refresh()
|
||||||
|
self.assertTrue(kv.get('test'))
|
||||||
|
|
||||||
def test_none(self):
|
def test_none(self):
|
||||||
kv = deadsimplekv.DeadSimpleKV(get_test_id())
|
kv = deadsimplekv.DeadSimpleKV(get_test_id())
|
||||||
# assert non existant value returns none
|
# assert non existant value returns none
|
||||||
|
Loading…
Reference in New Issue
Block a user