File: documentation.vim

package info (click to toggle)
python-jedi 0.19.1%2Bds1-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,680 kB
  • sloc: python: 28,783; makefile: 172; ansic: 13
file content (34 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
source plugin/jedi.vim

describe 'documentation docstrings'
    before
        set filetype=python
    end

    after
        try | %bwipeout! | catch | endtry
    end

    it 'simple'
        Expect maparg('K') == ':call jedi#show_documentation()<CR>'
        put = 'ImportError'
        normal GK
        Expect bufname('%') == "__doc__"
        Expect &filetype == 'rst'
        let header = getline(1, 2)
        Expect header[0] == "Docstring for class builtins.ImportError"
        Expect header[1] == "========================================"
        let content = join(getline(3, '$'), "\n")
        Expect stridx(content, "Import can't find module") > 0
        normal K
        Expect bufname('%') == ''
    end

    it 'no documentation'
        put = 'x = 2'
        normal o<ESC>GK
        Expect bufname('%') == ''
    end
end

" vim: et:ts=4:sw=4