summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Edmund Crosley <timothy.crosley@gmail.com>2015-02-05 17:02:20 -0500
committerTimothy Edmund Crosley <timothy.crosley@gmail.com>2015-02-05 17:02:20 -0500
commitc3d2b350957f6c9aa96289eac09a29c4ce66b0c2 (patch)
tree5bf4480ec93c453c044ba651691a2d294a24b115
parentee3807c263347a0c6953e2a1f66d413d26063539 (diff)
parent9154a6fbdd2fffb09c5718ad28050220f234ef42 (diff)
downloadisort-c3d2b350957f6c9aa96289eac09a29c4ce66b0c2.tar.gz
Merge pull request #243 from timothycrosley/feature/fix-issue-223
Add test to ensure consistency even when not ordering by type
-rw-r--r--test_isort.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test_isort.py b/test_isort.py
index bb302bc5..2aeb474c 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -1246,3 +1246,9 @@ def test_top_comments():
test_input = ("# -*- coding\n"
"import sys\n")
assert SortImports(file_contents=test_input).output == test_input
+
+
+def test_consistency():
+ """Ensures consistency of handling even when dealing with non ordered-by-type imports"""
+ test_input = "from sqlalchemy.dialects.postgresql import ARRAY, array\n"
+ assert SortImports(file_contents=test_input, order_by_type=False).output == test_input