mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -05:00
Merge pull request #379 from dickmao/fix-oinfo-errors
redo the test of remote doesn't have ein
This commit is contained in:
commit
17fd5c721b
2 changed files with 7 additions and 3 deletions
|
@ -7,7 +7,7 @@ Scenario: try autosaving
|
|||
@eldoc
|
||||
Scenario: not running server locally
|
||||
Given I enable "ein:enable-eldoc-support"
|
||||
Given I set "ein:source-dir" to "foo"
|
||||
Given I fset "ein:pytools-add-sys-path" to "ignore"
|
||||
Given new default notebook
|
||||
And I type "import math"
|
||||
And I press "C-a"
|
||||
|
|
|
@ -202,11 +202,15 @@
|
|||
(f-mkdir dir)
|
||||
(ein:testing-make-directory-level dir 1 (string-to-number width) (string-to-number depth))))
|
||||
|
||||
(When "^I set \"\\(.+\\)\" to \\(.+\\)$"
|
||||
(When "^I set \"\\(.+\\)\" to \"\\(.+\\)\"$"
|
||||
(lambda (variable value)
|
||||
(set (intern variable) value)))
|
||||
|
||||
(When "^I custom set \"\\(.+\\)\" to \\(.+\\)$"
|
||||
(When "^I fset \"\\(.+\\)\" to \"\\(.+\\)\"$"
|
||||
(lambda (variable value)
|
||||
(fset (intern variable) (function value))))
|
||||
|
||||
(When "^I custom set \"\\(.+\\)\" to \"\\(.+\\)\"$"
|
||||
(lambda (custom-variable value)
|
||||
(customize-set-value (intern custom-variable) value)))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue