|
| 1 | +;;; test-vc.el --- test cases |
| 2 | + |
| 3 | +;; Copyright (C) 2014 jaypei |
| 4 | + |
| 5 | +;; Author: jaypei <[email protected]> |
| 6 | +;; URL: https://github.com/jaypei/emacs-neotree |
| 7 | + |
| 8 | +;; This program is free software; you can redistribute it and/or modify |
| 9 | +;; it under the terms of the GNU General Public License as published by |
| 10 | +;; the Free Software Foundation, either version 3 of the License, or |
| 11 | +;; (at your option) any later version. |
| 12 | + |
| 13 | +;; This program is distributed in the hope that it will be useful, |
| 14 | +;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | +;; GNU General Public License for more details. |
| 17 | + |
| 18 | +;; You should have received a copy of the GNU General Public License |
| 19 | +;; along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 20 | + |
| 21 | +;;; Commentary: |
| 22 | + |
| 23 | +;;; Code: |
| 24 | + |
| 25 | +(require 'neotree) |
| 26 | +(require 'neotree-test) |
| 27 | + |
| 28 | +(neo-test--try-open |
| 29 | + neo-test-vc-mode-with-face |
| 30 | + (shell-command-to-string "git init") |
| 31 | + (setq neo-vc-integration '(face))) |
| 32 | + |
| 33 | +(neo-test--try-open |
| 34 | + neo-test-vc-mode-with-char |
| 35 | + (shell-command-to-string "git init") |
| 36 | + (setq neo-vc-integration '(char))) |
| 37 | + |
| 38 | +(neo-test--try-open |
| 39 | + neo-test-vc-mode-with-char-face |
| 40 | + (shell-command-to-string "git init") |
| 41 | + (setq neo-vc-integration '(char face))) |
| 42 | + |
| 43 | + |
| 44 | +;;; test-vc.el ends here |
0 commit comments