David Halter
|
b991190f50
|
python 3 compatibility, which is nicer anyway
|
2013-01-08 12:58:13 +01:00 |
|
David Halter
|
869572fe64
|
further improvements of the jedi import in tests
|
2013-01-08 12:29:17 +01:00 |
|
David Halter
|
3c4e079ecb
|
import jedi in tests and not api
|
2013-01-08 12:15:50 +01:00 |
|
David Halter
|
b748003b54
|
inline refactorings support tuples now, #103
|
2013-01-07 20:30:17 +01:00 |
|
David Halter
|
53a5bf6be8
|
inline tests
|
2013-01-07 20:20:02 +01:00 |
|
David Halter
|
f3c2c2aab4
|
add rename tests#
|
2013-01-07 14:29:48 +01:00 |
|
David Halter
|
f192259383
|
use absolute paths as the default for 'Script'
|
2013-01-07 14:29:34 +01:00 |
|
David Halter
|
5fc1d1130d
|
more extract tests
|
2013-01-07 14:00:28 +01:00 |
|
David Halter
|
fbd2ed02e5
|
again py2.5... i should test in the future before pushing to dev...
|
2013-01-07 01:55:33 +01:00 |
|
David Halter
|
d72d8ad756
|
py2.5 compatibility
|
2013-01-07 01:51:12 +01:00 |
|
David Halter
|
8ed550254f
|
add refactoring tests to travis tests
|
2013-01-07 01:48:48 +01:00 |
|
David Halter
|
50e64cf930
|
corrected indent of some extract functions
|
2013-01-07 01:47:33 +01:00 |
|
David Halter
|
fc58d1b8e7
|
working extract refactorings, affects #103
|
2013-01-07 01:32:20 +01:00 |
|
David Halter
|
5796496baf
|
corrected problem with line numbers
|
2013-01-07 00:36:37 +01:00 |
|
David Halter
|
00f78bc50d
|
use lines_to_execute also in refactoring.py
|
2013-01-06 17:42:07 +01:00 |
|
David Halter
|
37bbf1af1a
|
finished testing script for refactoring
|
2013-01-06 17:35:55 +01:00 |
|
David Halter
|
48c04b2fcd
|
move script in refactorings to be the default first parameter
|
2013-01-06 01:57:02 +01:00 |
|
David Halter
|
4700656c71
|
added refactoring tests - non functional
|
2013-01-06 01:49:41 +01:00 |
|
David Halter
|
795d25d9a7
|
improved some run.py stuff again
|
2013-01-06 01:48:48 +01:00 |
|
David Halter
|
ce51021c1e
|
move more testing functionality out of run.py
|
2013-01-05 22:42:16 +01:00 |
|
David Halter
|
31e8a8c5a2
|
remove sys path stuff in run.py (it's in base)
|
2013-01-05 20:19:48 +01:00 |
|
David Halter
|
15bd963f59
|
move test bases to test/base.py
|
2013-01-05 18:59:56 +01:00 |
|
David Halter
|
79e2bf80d0
|
don't use json (doesn't work in py2.5), even if it's not relevant. fixes #94 again :-)
|
2013-01-05 18:28:09 +01:00 |
|
Danilo Bargen
|
c14feb3f86
|
Renamed quick_complete to _quick_complete
|
2013-01-05 01:48:39 +01:00 |
|
Danilo Bargen
|
12b726c5a5
|
Added quick_complete convenience function
|
2013-01-03 23:10:35 +01:00 |
|
David Halter
|
17bec929bb
|
fix a little import problem in regression tests
|
2012-12-31 12:36:33 +01:00 |
|
David Halter
|
71b50bdbd7
|
return None on keywords for BaseDefinition.full_name, fixes #94
|
2012-12-30 10:49:18 +01:00 |
|
David Halter
|
548fb64fd7
|
test for #94
|
2012-12-30 10:39:08 +01:00 |
|
David Halter
|
41362370ed
|
follow imports if they are in the file path, fixes davidhalter/jedi-vim#56
|
2012-12-30 10:29:35 +01:00 |
|
David Halter
|
07dbebe277
|
test for problem with points in completion
|
2012-12-29 23:38:47 +01:00 |
|
Yakov Borevich
|
3b412c72e9
|
Remove google docstrings support. Updates #40
|
2012-12-28 10:09:03 +04:00 |
|
Yakov Borevich
|
c7cf7b6dc7
|
Fix complex param parsing in docstrings.
|
2012-12-28 10:07:51 +04:00 |
|
Yakov Borevich
|
5036960bf1
|
Merge branch 'dev' of github.com:davidhalter/jedi into docrtypes
|
2012-12-27 19:31:36 +04:00 |
|
Yakov Borevich
|
502c643c73
|
Return types for docstrings
|
2012-12-27 19:30:40 +04:00 |
|
David Halter
|
fc9e78c31e
|
new relative import tests
|
2012-12-27 15:40:46 +01:00 |
|
David Halter
|
21bd50c608
|
follow 'from . import variable', fixes parts of davidhalter/jedi-vim#56
|
2012-12-27 15:30:43 +01:00 |
|
David Halter
|
31b335dc08
|
fix for tar_import stuff, that was caused by http://bugs.python.org/issue16791, may affect davidhalter/jedi-vim#56
|
2012-12-27 13:32:39 +01:00 |
|
Yakov Borevich
|
a7f7d8ff9f
|
Add tests for epydoc formated dosctring
|
2012-12-27 14:59:42 +04:00 |
|
David Halter
|
d1f23444b1
|
add property tests for renaming and removed some limitations of renaming, fixes davidhalter/jedi-vim#57
|
2012-12-27 00:03:02 +01:00 |
|
David Halter
|
a7deb4766f
|
test for davidhalter/jedi-vim#57
|
2012-12-26 23:28:24 +01:00 |
|
David Halter
|
e057387910
|
added docstring tests (forgot to add them a while ago), important for #87
|
2012-12-26 23:08:34 +01:00 |
|
David Halter
|
45c9fe16b8
|
many tests and fixes for instance element renamings
|
2012-12-26 22:56:56 +01:00 |
|
David Halter
|
2534269cce
|
many new renaming tests (and bug fixes)
|
2012-12-26 21:34:21 +01:00 |
|
David Halter
|
3bf0ec70fc
|
improved goto on assignees (just return the assignee).
|
2012-12-26 20:53:15 +01:00 |
|
David Halter
|
92cd50b2b7
|
added goto tests for params
|
2012-12-25 02:26:36 +01:00 |
|
David Halter
|
70b949b6e5
|
test for class inheritance renaming
|
2012-12-24 17:22:45 +01:00 |
|
David Halter
|
1a4b556ddb
|
removed whitespace in renaming tests
|
2012-12-24 17:15:21 +01:00 |
|
David Halter
|
6322df11f3
|
renaming tests refactored. It's now much easier and understandable to create rename tests
|
2012-12-24 17:12:46 +01:00 |
|
David Halter
|
40898450af
|
support for super()
|
2012-12-24 12:27:43 +01:00 |
|
David Halter
|
0cca730b6e
|
increase python2.5 test fails again, I'm sure @dbrgn will like this.
|
2012-12-24 10:53:17 +01:00 |
|