|
4 | 4 | ;; Eric Hansen <[email protected]>
|
5 | 5 | ;;
|
6 | 6 | ;; URL: https://github.com/nlamirault/phpunit.el
|
7 |
| -;; Version: 0.9.0 |
| 7 | +;; Version: 0.10.0 |
8 | 8 | ;; Keywords: php, tests, phpunit
|
9 | 9 |
|
10 | 10 | ;; Package-Requires: ((s "1.9.0") (f "0.16.0") (pkg-info "0.5") (cl-lib "0.5") (emacs "24.3"))
|
|
44 | 44 | (require 'cl-lib)
|
45 | 45 | (require 's)
|
46 | 46 | (require 'f)
|
| 47 | +(eval-when-compile |
| 48 | + (require 'rx)) |
47 | 49 |
|
48 | 50 | (defgroup phpunit nil
|
49 | 51 | "PHPUnit utility"
|
|
85 | 87 | :group 'phpunit)
|
86 | 88 |
|
87 | 89 | (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 | + "(")) |
89 | 100 | "Regular expression for a PHP function.")
|
90 | 101 |
|
91 | 102 | (defconst php-beginning-of-class
|
|
119 | 130 | ;; "vendor/bin/phpunit"))
|
120 | 131 | (unless phpunit-executable
|
121 | 132 | (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)))) |
122 | 136 | (s-concat phpunit-executable
|
123 | 137 | (if phpunit-configuration-file
|
124 | 138 | (s-concat " -c " phpunit-configuration-file)
|
|
206 | 220 | (defun phpunit-current-class ()
|
207 | 221 | "Launch PHPUnit on current class."
|
208 | 222 | (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))) |
212 | 224 |
|
213 | 225 | ;;;###autoload
|
214 | 226 | (defun phpunit-current-project ()
|
|
0 commit comments