PY-17017 Add a test on actual custom folding of such trailing blocks

This commit is contained in:
Mikhail Golubev
2017-09-21 20:04:48 +03:00
parent 5276fe2588
commit be3e4ba742
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class C:<fold text='...'>
<fold text='Custom'># region Custom
def m(self):<fold text='...'>
pass</fold>
# endregion</fold></fold>

View File

@@ -66,4 +66,8 @@ public class PyFoldingTest extends PyTestCase {
doTest();
}
// PY-17017
public void testCustomFoldingAtBlockEnd() {
doTest();
}
}