From 026fc0051e488cf0e2eabf94c592b4e0e577c0f6 Mon Sep 17 00:00:00 2001 From: Sylvain Bellemare Date: Wed, 17 Aug 2016 12:00:16 +0200 Subject: [PATCH] Planning release --- bigchaindb_common.py | 1 + test_bigchaindb_common.py | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 bigchaindb_common.py create mode 100644 test_bigchaindb_common.py 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 +