Links, mainly...
This commit is contained in:
parent
fd42a3f173
commit
21ab02d647
69 changed files with 2258 additions and 155 deletions
36
test/system/link_categories_test.rb
Normal file
36
test/system/link_categories_test.rb
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
require 'application_system_test_case'
|
||||
|
||||
class LinkCategoriesTest < ApplicationSystemTestCase
|
||||
setup do
|
||||
@link_category = link_categories(:one)
|
||||
end
|
||||
|
||||
test 'visiting the index' do
|
||||
visit link_categories_url
|
||||
assert_selector 'h1', text: 'Linkkategorien'
|
||||
end
|
||||
|
||||
test 'should create Linkkategorie' do
|
||||
visit link_categories_url
|
||||
click_on 'Linkkategorie hinzufügen'
|
||||
|
||||
fill_in_rich_text_area 'Beschreibung', with: @link_category.description_html
|
||||
fill_in 'Name', with: @link_category.name
|
||||
click_on 'Linkkategorie erstellen'
|
||||
end
|
||||
|
||||
test 'should update Link category' do
|
||||
visit link_category_url(@link_category)
|
||||
click_on 'Linkkategorie bearbeiten', match: :first
|
||||
|
||||
fill_in_rich_text_area 'Beschreibung', with: @link_category.description_html
|
||||
fill_in 'Name', with: @link_category.name
|
||||
click_on 'Linkkategorie aktualisieren'
|
||||
end
|
||||
|
||||
test 'should destroy Link category' do
|
||||
link_category = link_categories(:deletable)
|
||||
visit link_category_url(link_category)
|
||||
click_on 'Linkkategorie löschen', match: :first
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue