Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e08bcb9
Update: version and dependencies
nlamirault Nov 27, 2017
d130762
Add missing require
zonuexe Dec 5, 2017
45fcae5
Use forward-line instead of next-line
zonuexe Dec 5, 2017
94f7592
Merge pull request #54 from nlamirault/fix/warnings
nlamirault Dec 5, 2017
292e9cb
Add phpunit-executable variable as buffer-local
zonuexe Dec 5, 2017
070d289
Refactor phpunit-get-program function
zonuexe Dec 5, 2017
3a12ad4
Add phpunit-root-directory as buffer local
zonuexe Dec 5, 2017
278391f
Add option to ignore phpunit-root-directory
zonuexe Dec 5, 2017
eb59c99
Add phpunit-set-dir-local-variable command
zonuexe Dec 5, 2017
64b7a1e
Merge pull request #55 from nlamirault/feature/phpunit-executable-var…
nlamirault Dec 5, 2017
b8b377b
Add vendor to .gitignore
zonuexe Dec 5, 2017
f99e1d1
Touch phpunit if there is no phpunit command
zonuexe Dec 5, 2017
5514e34
Merge pull request #56 from nlamirault/fix/test-phpunit-executable
zonuexe Dec 5, 2017
846e5dc
Rename phpunit-program to phpunit-default-program
zonuexe Dec 5, 2017
eb77cae
Allow string/function for phpunit-executable
zonuexe Dec 5, 2017
8784049
Rename phpunit-args and make buffer-local
zonuexe Dec 5, 2017
a8da976
Add document to phpunit-root-directory
zonuexe Dec 5, 2017
f0e3b59
Use unix command instead php -r
zonuexe Dec 6, 2017
464fe66
Merge pull request #57 from nlamirault/rename-variable-names
nlamirault Dec 6, 2017
6762c1b
Fix comment style
zonuexe Dec 16, 2017
044b9ed
quote executable in case path to vendor dir includes spaces.
jflearn Aug 7, 2018
ff89430
Merge pull request #58 from logicbrush/feature/fix_for_spaces_in_proj…
zonuexe Aug 8, 2018
cbb5022
Update: changelog for 0.17.0
zonuexe Aug 8, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use forward-line instead of next-line
  • Loading branch information
zonuexe committed Dec 5, 2017
commit 45fcae5910acf91c9f8d93053e482a804d5e3c9d
2 changes: 1 addition & 1 deletion phpunit.el
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
(goto-char (point-min))
(search-forward "Available test group")
(move-beginning-of-line 1)
(next-line)
(forward-line)
(cl-loop
for line in (s-split "\n" (buffer-substring-no-properties (point) (point-max)))
if (s-starts-with? " - " line)
Expand Down