Sha256: 6832f90c9d2a4445b4f2b62822860b35c05d1f14369a267657031d3ab6046a3c
Contents?: true
Size: 953 Bytes
Versions: 7
Compression:
Stored size: 953 Bytes
Contents
;; This is an example of how you could set up this file. This setup ;; requires a directory called util in the project root and that the ;; util directory contains the testing tools ert and espuds. (let* ((features-directory (file-name-directory (directory-file-name (file-name-directory load-file-name)))) (project-directory (file-name-directory (directory-file-name features-directory)))) (setq emacs-root-path project-directory) (setq emacs-util-path (expand-file-name "util" emacs-root-path))) (add-to-list 'load-path emacs-root-path) (add-to-list 'load-path (expand-file-name "espuds" emacs-util-path)) (add-to-list 'load-path (expand-file-name "ert" emacs-util-path)) (require 'vimgolf) (require 'espuds) (require 'ert) (Setup ;; Before anything has run ) (Before ;; Before each scenario is run ) (After ;; After each scenario is run ) (Teardown ;; After when everything has been run )
Version data entries
7 entries across 7 versions & 1 rubygems