bigchaindb/test_bigchaindb_common.py
Sylvain Bellemare 026fc0051e Planning release
2016-10-24 14:43:20 +02:00

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