basic entity get/show

This commit is contained in:
2023-01-13 21:47:31 +02:00
parent 26ea76c8e9
commit 38f51a5de6
13 changed files with 74 additions and 38 deletions

View File

@ -15,6 +15,7 @@ class EntitiesTest < ApplicationSystemTestCase
click_on "New entity"
fill_in "Ha", with: @entity.ha_id
fill_in "Member", with: @entity.member_id
fill_in "Name", with: @entity.name
fill_in "Type", with: @entity.type
click_on "Create Entity"
@ -28,6 +29,7 @@ class EntitiesTest < ApplicationSystemTestCase
click_on "Edit this entity", match: :first
fill_in "Ha", with: @entity.ha_id
fill_in "Member", with: @entity.member_id
fill_in "Name", with: @entity.name
fill_in "Type", with: @entity.type
click_on "Update Entity"