File tree Expand file tree Collapse file tree 4 files changed +68
-0
lines changed Expand file tree Collapse file tree 4 files changed +68
-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+ (define-package " lint" " 0.0.1" " Test project for lint" 'nil )
Original file line number Diff line number Diff line change 1+ ; ;; lint.el --- Test the command package -*- 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+ ; ;; Code:
21+
22+ (declare-function ignore " subr.el" (&rest args))
23+
24+ (provide 'lint )
25+
26+ ; ;; lint.el ends here
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 `package`
21+ #
22+
23+ set -e
24+
25+ source ./test/fixtures/home/scripts/testing.sh
26+ cd $( dirname " $0 " )
27+
28+ should_run eask package
29+
30+ # FIXME I think this should error
31+ # warning :files spec is equivalent to default
32+ # should_error eask package --strict
33+
34+ # --allow-error doesn't make sense for this command
You can’t perform that action at this time.
0 commit comments