branch: elpa/buttercup commit 1882d6fd762979fa7334c1a828ba9a8decf26cc9 Author: Jorgen Schaefer <cont...@jorgenschaefer.de> Commit: Jorgen Schaefer <cont...@jorgenschaefer.de>
Comment cleanup. Also, make elisp lexically scoped. --- buttercup-test.el | 19 +++++++++++++++++++ buttercup.el | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/buttercup-test.el b/buttercup-test.el index abc6daf..7e4ae99 100644 --- a/buttercup-test.el +++ b/buttercup-test.el @@ -1,3 +1,22 @@ +;;; buttercup-test.el --- Tests for buttercup.el -*-lexical-binding:t-*- + +;; Copyright (C) 2015 Jorgen Schaefer <cont...@jorgenschaefer.de> + +;; This program is free software; you can redistribute it and/or +;; modify it under the terms of the GNU General Public License +;; as published by the Free Software Foundation; either version 3 +;; of the License, or (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Code: + (require 'buttercup) (describe "The buttercup-failed signal" diff --git a/buttercup.el b/buttercup.el index 0243f52..41c9016 100644 --- a/buttercup.el +++ b/buttercup.el @@ -1,4 +1,4 @@ -;;; buttercup.el --- Behavior-Driven Emacs Lisp Testing +;;; buttercup.el --- Behavior-Driven Emacs Lisp Testing -*-lexical-binding:t-*- ;; Copyright (C) 2015 Jorgen Schaefer <cont...@jorgenschaefer.de> @@ -228,7 +228,7 @@ MATCHER is either a matcher defined with (cons t (format "Expected %S not to throw an error" function))))))) ;;;;;;;;;;;;;;;;;;;; -;;; describe: Suites +;;; Suites: describe (cl-defstruct buttercup-suite description