File tree Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ (package "lint"
2+ "0.0.1"
3+ "Test project for lint")
4+ (package-file "lint-pkg.el")
5+
6+ (source 'gnu)
7+ (source 'melpa)
Original file line number Diff line number Diff line change 1+ ; ;; ert-test.el --- Test the command ert -*- lexical-binding : t ; -*-
2+
3+ ; ; Copyright (C) 2022-2024 the Eask authors.
4+
5+ ; ; This program is free software; you can redistribute it and/or modify
6+ ; ; it under the terms of the GNU General Public License as published by
7+ ; ; the Free Software Foundation, either version 3 of the License, or
8+ ; ; (at your option) any later version.
9+
10+ ; ; This program is distributed in the hope that it will be useful,
11+ ; ; but WITHOUT ANY WARRANTY; without even the implied warranty of
12+ ; ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+ ; ; GNU General Public License for more details.
14+
15+ ; ; You should have received a copy of the GNU General Public License
16+ ; ; along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
18+ ; ;; Commentary:
19+
20+ ; ; Tests for the command ert
21+
22+ ; ;; Code:
23+
24+ (declare-function ignore " subr.el" (&rest args))
25+
26+ ; ;; declare-ok.el ends here
Original file line number Diff line number Diff line change 1+ (define-package " lint" " 0.0.1" " Test project for lint" 'nil )
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # Copyright (C) 2022-2024 the Eask authors.
4+
5+ # This program is free software; you can redistribute it and/or modify
6+ # it under the terms of the GNU General Public License as published by
7+ # the Free Software Foundation; either version 3, or (at your option)
8+ # any later version.
9+
10+ # This program is distributed in the hope that it will be useful,
11+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+ # GNU General Public License for more details.
14+
15+ # You should have received a copy of the GNU General Public License
16+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
18+ # # Commentary:
19+ #
20+ # Test command `load`
21+ #
22+
23+ set -e
24+
25+ source ./test/fixtures/home/scripts/testing.sh
26+ cd $( dirname " $0 " )
27+
28+ should_run eask load declare-ok.el
29+ # for some reason this errors
30+ # unsure if it is expected behavior, use it for now
31+ should_error eask load lint-pkg.el
32+
33+ # FIXME
34+ # OUTPUT="$(should_error eask load --allow-error lint-pkg.el declare-ok.el)"
35+ # should_match "Loading .*declare-ok.el" "$OUTPUT"
You can’t perform that action at this time.
0 commit comments