mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
30 lines
418 B
Python
30 lines
418 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
test_bigchaindb_common
|
|
----------------------------------
|
|
|
|
Tests for `bigchaindb_common` module.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
from bigchaindb_common import bigchaindb_common
|
|
|
|
|
|
class TestBigchaindb_common(object):
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
pass
|
|
|
|
def test_something(self):
|
|
pass
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
pass
|
|
|