summaryrefslogtreecommitdiff
path: root/test_isort.py
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-07 23:53:50 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-08 00:31:54 -0800
commitffb4288cfb7ae7646ab9c5a84cc4167d4fcf3940 (patch)
tree68645b67b5c239b4c11953e173a888c59da56e5d /test_isort.py
parentb2bc1d43a6ec1c19e9057ae30cd147226e11d745 (diff)
downloadisort-ffb4288cfb7ae7646ab9c5a84cc4167d4fcf3940.tar.gz
Fix issue #890
Diffstat (limited to 'test_isort.py')
-rw-r--r--test_isort.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/test_isort.py b/test_isort.py
index 9b3c1e42..fce3e3f0 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -2880,3 +2880,24 @@ def test_extract_multiline_output_wrap_setting_from_a_config_file(tmpdir: py.pat
config = settings.from_path(str(tmpdir))
assert config['multi_line_output'] == WrapModes.VERTICAL_GRID_GROUPED
+
+
+def test_ensure_support_for_non_typed_but_cased_alphabetic_sort_issue_890():
+ test_input = ('from pkg import BALL\n'
+ 'from pkg import RC\n'
+ 'from pkg import Action\n'
+ 'from pkg import Bacoo\n'
+ 'from pkg import RCNewCode\n'
+ 'from pkg import actual\n'
+ 'from pkg import rc\n'
+ 'from pkg import recorder\n')
+ expected_output = ('from pkg import Action\n'
+ 'from pkg import BALL\n'
+ 'from pkg import Bacoo\n'
+ 'from pkg import RC\n'
+ 'from pkg import RCNewCode\n'
+ 'from pkg import actual\n'
+ 'from pkg import rc\n'
+ 'from pkg import recorder\n')
+ assert SortImports(file_contents=test_input, case_sensitive=True, order_by_type=False,
+ force_single_line=True).output == expected_output