diff --git a/bigchaindb_common.py b/bigchaindb_common.py new file mode 100644 index 00000000..40a96afc --- /dev/null +++ b/bigchaindb_common.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/test_bigchaindb_common.py b/test_bigchaindb_common.py new file mode 100644 index 00000000..ed70f9ea --- /dev/null +++ b/test_bigchaindb_common.py @@ -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 +