mirror of
https://github.com/we-promise/sure.git
synced 2026-04-23 05:54:08 +00:00
* Initial plan * Fix category delete dialog dropdown overflow Agent-Logs-Url: https://github.com/we-promise/sure/sessions/200da7a4-fd59-4ae4-a709-f631ccf21e8c Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Tighten category deletion regression test Agent-Logs-Url: https://github.com/we-promise/sure/sessions/200da7a4-fd59-4ae4-a709-f631ccf21e8c Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Fix deletion button text overflow Agent-Logs-Url: https://github.com/we-promise/sure/sessions/e802e01f-079e-4322-ba03-b222ab5d4b84 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Preserve category menu spacing on mobile Agent-Logs-Url: https://github.com/we-promise/sure/sessions/74b5dd1e-7935-4356-806a-759bff911930 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Prevent account activity label overlap on mobile Agent-Logs-Url: https://github.com/we-promise/sure/sessions/e94027d6-e230-44c8-99a1-6e5645bec82b Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Fix wide account activity category overflow Agent-Logs-Url: https://github.com/we-promise/sure/sessions/4ad79894-2935-47a3-8d37-037e2bd14376 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Linter * Fix flaky system tests in CI Agent-Logs-Url: https://github.com/we-promise/sure/sessions/3507447f-363f-4759-807c-c62a2858d270 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> * Reset system test viewport between tests Agent-Logs-Url: https://github.com/we-promise/sure/sessions/357a43b1-11c5-49be-972d-0592a37d97b1 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com> Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
require "test_helper"
|
|
|
|
class Category::DeletionsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in users(:family_admin)
|
|
@category = categories(:food_and_drink)
|
|
ensure_tailwind_build
|
|
end
|
|
|
|
test "new" do
|
|
get new_category_deletion_url(@category)
|
|
assert_response :success
|
|
assert_select "turbo-frame#modal"
|
|
assert_select "turbo-frame#modal button span.min-w-0.truncate", text: /Delete "Food & Drink" and leave uncategorized/
|
|
end
|
|
|
|
test "create with replacement" do
|
|
replacement_category = categories(:income)
|
|
|
|
assert_not_empty @category.transactions
|
|
|
|
assert_difference "Category.count", -1 do
|
|
assert_difference "replacement_category.transactions.count", @category.transactions.count do
|
|
post category_deletions_url(@category),
|
|
params: { replacement_category_id: replacement_category.id }
|
|
end
|
|
end
|
|
|
|
assert_redirected_to transactions_url
|
|
end
|
|
|
|
test "create without replacement" do
|
|
assert_not_empty @category.transactions
|
|
|
|
assert_difference "Category.count", -1 do
|
|
assert_difference "Transaction.where(category: nil).count", @category.transactions.count do
|
|
post category_deletions_url(@category)
|
|
end
|
|
end
|
|
|
|
assert_redirected_to transactions_url
|
|
end
|
|
end
|