mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
fix: Bug creating duplicate category leads to crash screen (#1577)
Co-authored-by: Tony Vincent Yesudas <tony.yesudas@raisenow.com>
This commit is contained in:
parent
9d217afb9f
commit
b0d9891133
3 changed files with 38 additions and 0 deletions
|
@ -33,6 +33,17 @@ class CategoriesControllerTest < ActionDispatch::IntegrationTest
|
|||
assert_equal color, new_category.color
|
||||
end
|
||||
|
||||
test "create fails if name is not unique" do
|
||||
assert_no_difference "Category.count" do
|
||||
post categories_url, params: {
|
||||
category: {
|
||||
name: categories(:food_and_drink).name,
|
||||
color: Category::COLORS.sample } }
|
||||
end
|
||||
|
||||
assert_response :unprocessable_entity
|
||||
end
|
||||
|
||||
test "create and assign to transaction" do
|
||||
color = Category::COLORS.sample
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue