Planning release

This commit is contained in:
Sylvain Bellemare 2016-08-17 12:00:16 +02:00
parent 53460a6856
commit 026fc0051e
2 changed files with 30 additions and 0 deletions

1
bigchaindb_common.py Normal file
View File

@ -0,0 +1 @@
# -*- coding: utf-8 -*-

29
test_bigchaindb_common.py Normal file
View File

@ -0,0 +1,29 @@
#!/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