File tree Expand file tree Collapse file tree 4 files changed +10
-17
lines changed Expand file tree Collapse file tree 4 files changed +10
-17
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,10 @@ set -e
24
24
source ./test/fixtures/home/scripts/testing.sh
25
25
cd $( dirname " $0 " )
26
26
27
- # FIXME this should match other commands which exit with status 1
28
27
# partial input errors when there are no files
29
- # cd empty
30
- # should_error eask compile
31
- # cd ../
28
+ cd empty
29
+ should_error eask compile
30
+ cd ../
32
31
33
32
# compiles with a warning
34
33
should_run eask compile mock.el
Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ cd $(dirname "$0")
27
27
# partial input
28
28
should_error eask link
29
29
should_error eask link add
30
- # FIXME should error
31
- # should_error eask link delete
30
+ should_error eask link delete
32
31
33
32
# FIXME stack trace when package name doesn't match link name
34
33
# prefer a better warning if this is important
@@ -44,8 +43,7 @@ OUTPUT="$(should_run eask link list)"
44
43
echo " $OUTPUT "
45
44
should_match " valid-package" " $OUTPUT "
46
45
47
- # when package/link doesn't exist
48
- # FIXME: doesn't error
46
+ # FIXME when package/link doesn't exist
49
47
# should_error eask link delete foo
50
48
51
49
# no package after delete
Original file line number Diff line number Diff line change @@ -27,10 +27,9 @@ cd $(dirname "$0")
27
27
should_error eask run
28
28
# FIXME
29
29
# should_error eask run command
30
- # FIXME
31
- # cd ./no-scripts/
32
- # should_error eask run script
33
- # cd ../
30
+ cd ./no-scripts/
31
+ should_error eask run script
32
+ cd ../
34
33
35
34
should_run eask run command my-command my-warn
36
35
# FIXME
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ cd $(dirname "$0")
28
28
# partial input
29
29
should_error eask test
30
30
31
- # FIXME
32
- # should_error eask test ert
33
-
34
31
echo " activate"
35
32
echo " ----------"
36
33
cd ./activate/
@@ -74,8 +71,8 @@ should_error eask test ert-runner # all tests
74
71
75
72
echo " ert"
76
73
echo " ----------"
77
- # FIXME partial input should error
78
- # should_error eask test ert
74
+ # partial input should error
75
+ should_error eask test ert
79
76
80
77
should_run eask test ert test/ert-test.el
81
78
should_error eask test ert test/ert-fail-test.el
You can’t perform that action at this time.
0 commit comments