From 87633c03bdd4279d094110e19c5f20d66d209456 Mon Sep 17 00:00:00 2001 From: spiglerg <spiglerg@gmail.com> Date: Wed, 3 Apr 2019 11:31:43 +0200 Subject: [PATCH] placeholder for environments tests --- tests/test_environments.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/test_environments.py diff --git a/tests/test_environments.py b/tests/test_environments.py new file mode 100644 index 0000000..ae4d524 --- /dev/null +++ b/tests/test_environments.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +"""Tests for `flatland` package.""" + + +def test_base_environment(): + """Test example Transition.""" + a = True + b = True + assert a == b -- GitLab