Skip to content

Commit

Permalink
Add failing test case for conda bug (issue #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdrozd committed Dec 29, 2021
1 parent da3c4a8 commit f31c8b2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/reazon-test-interface.el
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,23 @@
(reazon-run* q (reazon-conda))
(reazon-run* q (reazon-condu))))

(ert-deftest reazon-test-interface-conda-bug ()
:expected-result :failed
(reazon--should-equal '(a1)
(reazon-run* x
(reazon-conde
((reazon-== x 'a1))
((reazon-== x 'a2)))
(reazon-conda
((reazon-== x 'a2) #'reazon-!U)
(#'reazon-!S)))
(reazon-run* (x)
(reazon-conde
((reazon-== x 'a1))
((reazon-== x 'a2)))
(reazon-conda
((reazon-== x 'a2) (reazon-== x 'c))
((reazon-== x x))))))

(provide 'reazon-test-interface)
;;; reazon-test-interface.el ends here

0 comments on commit f31c8b2

Please sign in to comment.