Skip to content
Snippets Groups Projects
Commit decabb60 authored by Cam Saül's avatar Cam Saül
Browse files

Test for #5406 *cough*

parent 811086b5
No related branches found
No related tags found
No related merge requests found
......@@ -183,3 +183,13 @@
:recipients [{:email "foo@bar.com"}
{:id (user->id :crowberto)}]}]
:skip-if-empty? false})))
;; make sure fetching a Pulse doesn't return any archived cards
(expect
1
(tt/with-temp* [Pulse [pulse]
Card [card-1 {:archived true}]
Card [card-2]
PulseCard [_ {:pulse_id (u/get-id pulse), :card_id (u/get-id card-1), :position 0}]
PulseCard [_ {:pulse_id (u/get-id pulse), :card_id (u/get-id card-2), :position 1}]]
(count (:cards (retrieve-pulse (u/get-id pulse))))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment