From d7339462ed66d433e6888677ebf5b747f094f43b Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Mon, 20 Mar 2017 19:50:05 +0100 Subject: [PATCH] test --- tests/__init__.py | 7 +++++++ your_project_source/erer.py | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 your_project_source/erer.py diff --git a/tests/__init__.py b/tests/__init__.py index 9599562..459364d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1,8 @@ # coding=UTF-8 + + +import unittest +class TestX(unittest.TestCase): + def test_wtf(self): + import your_project_source.erer + pass \ No newline at end of file diff --git a/your_project_source/erer.py b/your_project_source/erer.py new file mode 100644 index 0000000..d37f793 --- /dev/null +++ b/your_project_source/erer.py @@ -0,0 +1,11 @@ +# coding=UTF-8 +""" +It sounds like a melody +""" +from __future__ import print_function, absolute_import, division +import six +import logging + +logger = logging.getLogger(__name__) + + -- GitLab