mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 04:24:06 +00: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:
26
test/system/categories_test.rb
Normal file
26
test/system/categories_test.rb
Normal file
@@ -0,0 +1,26 @@
|
||||
require "application_system_test_case"
|
||||
|
||||
class CategoriesTest < ApplicationSystemTestCase
|
||||
setup do
|
||||
sign_in @user = users(:family_admin)
|
||||
end
|
||||
|
||||
test "can create category" do
|
||||
visit categories_url
|
||||
click_link I18n.t("categories.new.new_category")
|
||||
fill_in "Name", with: "My Shiny New Category"
|
||||
click_button "Create Category"
|
||||
|
||||
visit categories_url
|
||||
assert_text "My Shiny New Category"
|
||||
end
|
||||
|
||||
test "trying to create a duplicate category fails" do
|
||||
visit categories_url
|
||||
click_link I18n.t("categories.new.new_category")
|
||||
fill_in "Name", with: categories(:food_and_drink).name
|
||||
click_button "Create Category"
|
||||
|
||||
assert_text "Name has already been taken"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user