autopopup after . is also an autopopup and should track editor events

This commit is contained in:
peter
2011-02-07 12:49:28 +01:00
parent f5530cba10
commit a92e8b744a
3 changed files with 47 additions and 28 deletions
@@ -444,4 +444,21 @@ class JavaAutoPopupTest extends CompletionAutoPopupTestCase {
assert !lookup
}
public void testResumeAfterBackspace() {
myFixture.configureByText("a.java", """
class A {
Object foo() { this<caret> }
}
""")
type '.'
assert lookup
type 'a'
assert !lookup
type '\b'
assert !lookup
type 'c'
assert lookup
}
}