Skip to content

Commit 77686cc

Browse files
authored
Merge pull request #24 from nlamirault/develop
Release 0.10.0
2 parents 7b2a811 + a30524d commit 77686cc

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

ChangeLog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# phpunit.el ChangeLog
22

3+
## Version 0.10.0 (08/07/2016)
4+
5+
- #PR23: Better regexp using rx (Thanks zonuexe)
6+
- #PR22: Simplify phpunit-current-class (Thanks zonuexe)
7+
- #PR21: Fix for Emacs 25.1 (Thanks zonuexe)
8+
39
## Version 0.9.0 (05/31/2016)
410

511
- #PR19: Some problem fixes (Tramp, phpunit-get-root-directory,

phpunit.el

+17-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;; Eric Hansen <[email protected]>
55
;;
66
;; URL: https://github.com/nlamirault/phpunit.el
7-
;; Version: 0.9.0
7+
;; Version: 0.10.0
88
;; Keywords: php, tests, phpunit
99

1010
;; Package-Requires: ((s "1.9.0") (f "0.16.0") (pkg-info "0.5") (cl-lib "0.5") (emacs "24.3"))
@@ -44,6 +44,8 @@
4444
(require 'cl-lib)
4545
(require 's)
4646
(require 'f)
47+
(eval-when-compile
48+
(require 'rx))
4749

4850
(defgroup phpunit nil
4951
"PHPUnit utility"
@@ -85,7 +87,16 @@
8587
:group 'phpunit)
8688

8789
(defconst php-beginning-of-defun-regexp
88-
"^\\s-*\\(?:\\(?:abstract\\|final\\|private\\|protected\\|public\\|static\\)\\s-+\\)*function\\s-+&?\\(\\(?:\\sw\\|\\s_\\)+\\)\\s-*("
90+
(eval-when-compile
91+
(rx line-start
92+
(* (syntax whitespace))
93+
(* (or "abstract" "final" "private" "protected" "public" "static"))
94+
"function"
95+
(+ (syntax whitespace))
96+
(? "&")
97+
(group (+ (or (syntax word) (syntax symbol))))
98+
(* (syntax whitespace))
99+
"("))
89100
"Regular expression for a PHP function.")
90101

91102
(defconst php-beginning-of-class
@@ -119,6 +130,9 @@
119130
;; "vendor/bin/phpunit"))
120131
(unless phpunit-executable
121132
(setq phpunit-executable phpunit-program))
133+
(when (file-remote-p phpunit-executable)
134+
(setq phpunit-executable
135+
(tramp-file-name-localname (tramp-dissect-file-name phpunit-executable))))
122136
(s-concat phpunit-executable
123137
(if phpunit-configuration-file
124138
(s-concat " -c " phpunit-configuration-file)
@@ -206,9 +220,7 @@
206220
(defun phpunit-current-class ()
207221
"Launch PHPUnit on current class."
208222
(interactive)
209-
(let ((args (s-concat " --filter '(?<!" php-labelchar-regexp ")" (phpunit-get-current-class) "'")))
210-
(phpunit-run args)))
211-
223+
(phpunit-run (s-chop-prefix (phpunit-get-root-directory) buffer-file-name)))
212224

213225
;;;###autoload
214226
(defun phpunit-current-project ()

test/phpunit-version-test.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
;;(message "PHPUnit.el : %s" lib-version)
3838
(message "PHPUnit.el Cask version: %s" cask-version)
3939
;;(should (string= version (phpunit-mode-library-version)))))
40-
(should (string= "0.9.0" cask-version))))
40+
(should (string= "0.10.0" cask-version))))
4141

4242

4343

0 commit comments

Comments
 (0)