Add more bad 8pus tests
This commit is contained in:
parent
d40f4081c4
commit
b17a1c3662
6
tests/8pus/bad/no_arg_tactic.8pus
Normal file
6
tests/8pus/bad/no_arg_tactic.8pus
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Goal A -> B -> C -> A.
|
||||||
|
intros.
|
||||||
|
apply.
|
||||||
|
exact.
|
||||||
|
assumption.
|
||||||
|
Qed.
|
4
tests/8pus/bad/not_yet_qed.8pus
Normal file
4
tests/8pus/bad/not_yet_qed.8pus
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Goal A -> B -> A.
|
||||||
|
intros.
|
||||||
|
Qed.
|
||||||
|
Check.
|
1
tests/8pus/bad/undo_empty.8pus
Normal file
1
tests/8pus/bad/undo_empty.8pus
Normal file
@ -0,0 +1 @@
|
|||||||
|
Undo.
|
6
tests/8pus/bad/undo_loop.8pus
Normal file
6
tests/8pus/bad/undo_loop.8pus
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Goal A -> B.
|
||||||
|
intro.
|
||||||
|
Undo.
|
||||||
|
Undo.
|
||||||
|
Undo.
|
||||||
|
Undo.
|
7
tests/8pus/bad/undo_qed.8pus
Normal file
7
tests/8pus/bad/undo_qed.8pus
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Goal (A -> B) -> A -> B.
|
||||||
|
intros.
|
||||||
|
apply H0.
|
||||||
|
exact H1.
|
||||||
|
Qed.
|
||||||
|
Undo.
|
||||||
|
Qed.
|
7
tests/8pus/bad/undo_try.8pus
Normal file
7
tests/8pus/bad/undo_try.8pus
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Goal A -> B -> A.
|
||||||
|
intros.
|
||||||
|
try intro.
|
||||||
|
Undo.
|
||||||
|
intro.
|
||||||
|
exact H0.
|
||||||
|
Qed.
|
2
tests/8pus/bad/unknown_tactic.8pus
Normal file
2
tests/8pus/bad/unknown_tactic.8pus
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Goal A -> B.
|
||||||
|
ancienttactic.
|
3
tests/8pus/bad/unkown_try.8pus
Normal file
3
tests/8pus/bad/unkown_try.8pus
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Goal A -> B -> C -> A.
|
||||||
|
intros.
|
||||||
|
try autosolve.
|
Loading…
Reference in New Issue
Block a user