Started adding some skeleton tests.
--HG-- branch : mjc extra : transplant_source : .T%A9%E7%F3%0E%A620%F1G%C2%1E%C4%60%88%14%29%20%23
This commit is contained in:
22
lang/python/tests/ConnectionTest.py
Normal file
22
lang/python/tests/ConnectionTest.py
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python
|
||||
#
|
||||
# Copyright (c) 2010 WiredTiger. All rights reserved.
|
||||
#
|
||||
# Python unit tests for the wiredtiger.Connection class.
|
||||
|
||||
from wiredtiger import Connection
|
||||
|
||||
try:
|
||||
import unittest2 as unittest
|
||||
except ImportError:
|
||||
import unittest
|
||||
|
||||
class TestConnections(unittest.TestCase):
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
def test_open(self):
|
||||
c = Connection('file:/testdb')
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user