summaryrefslogtreecommitdiffstats
path: root/tests/features
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features')
-rw-r--r--tests/features/db_utils.py4
-rw-r--r--tests/features/environment.py3
-rw-r--r--tests/features/fixture_utils.py4
-rw-r--r--tests/features/steps/auto_vertical.py3
-rw-r--r--tests/features/steps/basic_commands.py2
-rw-r--r--tests/features/steps/crud_database.py3
-rw-r--r--tests/features/steps/crud_table.py2
-rw-r--r--tests/features/steps/expanded.py2
-rw-r--r--tests/features/steps/iocommands.py2
-rw-r--r--tests/features/steps/named_queries.py2
-rw-r--r--tests/features/steps/specials.py2
-rw-r--r--tests/features/steps/wrappers.py3
12 files changed, 0 insertions, 32 deletions
diff --git a/tests/features/db_utils.py b/tests/features/db_utils.py
index 7f8a2e7d..f57bc3b9 100644
--- a/tests/features/db_utils.py
+++ b/tests/features/db_utils.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-from __future__ import print_function
-
from psycopg2 import connect
from psycopg2.extensions import AsIs
diff --git a/tests/features/environment.py b/tests/features/environment.py
index 349e9dd6..4e7e601e 100644
--- a/tests/features/environment.py
+++ b/tests/features/environment.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals, print_function
-
import copy
import os
import sys
diff --git a/tests/features/fixture_utils.py b/tests/features/fixture_utils.py
index 25204544..16f123a6 100644
--- a/tests/features/fixture_utils.py
+++ b/tests/features/fixture_utils.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-from __future__ import print_function
-
import os
import codecs
diff --git a/tests/features/steps/auto_vertical.py b/tests/features/steps/auto_vertical.py
index 2bb89870..1643ea5e 100644
--- a/tests/features/steps/auto_vertical.py
+++ b/tests/features/steps/auto_vertical.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8
-from __future__ import unicode_literals, print_function
-
from textwrap import dedent
from behave import then, when
import wrappers
diff --git a/tests/features/steps/basic_commands.py b/tests/features/steps/basic_commands.py
index bda163f6..0c42ae0e 100644
--- a/tests/features/steps/basic_commands.py
+++ b/tests/features/steps/basic_commands.py
@@ -1,10 +1,8 @@
-# -*- coding: utf-8
"""
Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it.
This string is used to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
import pexpect
import subprocess
diff --git a/tests/features/steps/crud_database.py b/tests/features/steps/crud_database.py
index 9eab4f45..3fd8b7a1 100644
--- a/tests/features/steps/crud_database.py
+++ b/tests/features/steps/crud_database.py
@@ -1,11 +1,8 @@
-# -*- coding: utf-8 -*-
"""
Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it.
This string is used to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
-
import pexpect
from behave import when, then
diff --git a/tests/features/steps/crud_table.py b/tests/features/steps/crud_table.py
index 6d848aba..0375883a 100644
--- a/tests/features/steps/crud_table.py
+++ b/tests/features/steps/crud_table.py
@@ -1,10 +1,8 @@
-# -*- coding: utf-8
"""
Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it.
This string is used to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
from behave import when, then
from textwrap import dedent
diff --git a/tests/features/steps/expanded.py b/tests/features/steps/expanded.py
index f79f913b..f34fcf04 100644
--- a/tests/features/steps/expanded.py
+++ b/tests/features/steps/expanded.py
@@ -1,11 +1,9 @@
-# -*- coding: utf-8
"""Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it. This string is used
to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
from behave import when, then
from textwrap import dedent
diff --git a/tests/features/steps/iocommands.py b/tests/features/steps/iocommands.py
index 416eac59..613aeb29 100644
--- a/tests/features/steps/iocommands.py
+++ b/tests/features/steps/iocommands.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8
-from __future__ import unicode_literals, print_function
import os
import os.path
diff --git a/tests/features/steps/named_queries.py b/tests/features/steps/named_queries.py
index 289ec639..3f52859b 100644
--- a/tests/features/steps/named_queries.py
+++ b/tests/features/steps/named_queries.py
@@ -1,10 +1,8 @@
-# -*- coding: utf-8
"""
Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it.
This string is used to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
from behave import when, then
import wrappers
diff --git a/tests/features/steps/specials.py b/tests/features/steps/specials.py
index 2c77a3b1..813292c4 100644
--- a/tests/features/steps/specials.py
+++ b/tests/features/steps/specials.py
@@ -1,10 +1,8 @@
-# -*- coding: utf-8
"""
Steps for behavioral style tests are defined in this module.
Each step is defined by the string decorating it.
This string is used to call the step in "*.feature" file.
"""
-from __future__ import unicode_literals, print_function
from behave import when, then
import wrappers
diff --git a/tests/features/steps/wrappers.py b/tests/features/steps/wrappers.py
index 9a2db982..e0f5a20e 100644
--- a/tests/features/steps/wrappers.py
+++ b/tests/features/steps/wrappers.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8
-from __future__ import unicode_literals
-
import re
import pexpect
from pgcli.main import COLOR_CODE_REGEX