From c3f9f0306559a9bfaf63bd4fe79b5777df463856 Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 28 Aug 2013 20:00:48 +0430 Subject: [PATCH] failing signatures tests --- test/signatures.vim | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/signatures.vim diff --git a/test/signatures.vim b/test/signatures.vim new file mode 100644 index 0000000..444e002 --- /dev/null +++ b/test/signatures.vim @@ -0,0 +1,23 @@ +source plugin/jedi.vim + +describe 'signatures' + before + set filetype=python + end + + after + bd! + bd! + end + + it 'simple' + normal ostr( + Python jedi_vim.show_call_signatures() + + "doautocmd CursorMovedI + + Expect getline(1) == 'a' + + "doautocmd InsertLeave + end +end