summaryrefslogtreecommitdiff
path: root/python/testSrc
diff options
context:
space:
mode:
Diffstat (limited to 'python/testSrc')
-rw-r--r--python/testSrc/com/jetbrains/python/PyStatementMoverTest.java4
-rw-r--r--python/testSrc/com/jetbrains/python/inspections/PyAttributeOutsideInitInspectionTest.java4
2 files changed, 8 insertions, 0 deletions
diff --git a/python/testSrc/com/jetbrains/python/PyStatementMoverTest.java b/python/testSrc/com/jetbrains/python/PyStatementMoverTest.java
index 583864a26600..3539150731b6 100644
--- a/python/testSrc/com/jetbrains/python/PyStatementMoverTest.java
+++ b/python/testSrc/com/jetbrains/python/PyStatementMoverTest.java
@@ -256,6 +256,10 @@ public class PyStatementMoverTest extends PyTestCase {
doTest();
}
+ public void testInsideDocComment() { //PY-11595
+ doTest();
+ }
+
public void testWith() { // PY-5202
try {
setLanguageLevel(LanguageLevel.PYTHON27);
diff --git a/python/testSrc/com/jetbrains/python/inspections/PyAttributeOutsideInitInspectionTest.java b/python/testSrc/com/jetbrains/python/inspections/PyAttributeOutsideInitInspectionTest.java
index 5cc33a8f9506..7c8812f44f97 100644
--- a/python/testSrc/com/jetbrains/python/inspections/PyAttributeOutsideInitInspectionTest.java
+++ b/python/testSrc/com/jetbrains/python/inspections/PyAttributeOutsideInitInspectionTest.java
@@ -62,6 +62,10 @@ public class PyAttributeOutsideInitInspectionTest extends PyTestCase {
doTest();
}
+ public void testStaticMethod() {
+ doTest();
+ }
+
private void doTest() {
myFixture.configureByFile("inspections/PyAttributeOutsideInitInspection/" + getTestName(true) + ".py");
myFixture.enableInspections(PyAttributeOutsideInitInspection.class);