vimux-nose-test icon indicating copy to clipboard operation
vimux-nose-test copied to clipboard

RunNoseTestFocused fails if cursor is on the test function declaration

Open tyewang opened this issue 7 years ago • 0 comments

Suppose you have the following test setup:

class TestA(...):
    def test_foo(self):
        ...
class TestB(...):
    def test_bar(self):
        ...

If the cursor is on the def test_foo line, RunNoseTestFocused will end up running TestA.test_bar, which doesn't exist.

tyewang avatar Mar 18 '17 19:03 tyewang