diff --git a/.ert-runner b/.ert-runner deleted file mode 100644 index c07ab9f..0000000 --- a/.ert-runner +++ /dev/null @@ -1 +0,0 @@ --L . \ No newline at end of file diff --git a/test/pass-secrets.el-test.el b/test/pass-secrets.el-test.el deleted file mode 100644 index 33162a0..0000000 --- a/test/pass-secrets.el-test.el +++ /dev/null @@ -1,36 +0,0 @@ -;;; pass-secrets.el-test.el --- Tests for pass-secrets.el.el - -;; Copyright (C) 2013 Nicolas Petton - -;; Author: Nicolas Petton - -;; This file is not part of GNU Emacs. - -;; 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 . - -;;; Commentary: - -;; Tests for pass-secrets.el.el - -;;; Code: - -(require 'ert) -(require 'pass-secrets.el) - -(ert-deftest pass-secrets.el-check-sum () - (should (equal (+ 1 1) 2))) - -(provide 'pass-secrets.el-test) - -;;; pass-secrets.el-test.el ends here diff --git a/test/test-helper.el b/test/test-helper.el deleted file mode 100644 index 3356768..0000000 --- a/test/test-helper.el +++ /dev/null @@ -1,31 +0,0 @@ -;;; test-helper.el --- Helper functions to test pass-secrets.el -*- lexical-binding: t; -*- - -;; Copyright (C) 2017 Nicolas Petton - -;; Author: Nicolas Petton - -;; 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 . - -;;; Commentary: - -;; - -;;; Code: - -(declare-function undercover "undercover") - -(when (require 'undercover nil t) - (undercover "pass-secrets.el.el")) - -;;; test-helper.el ends here