43 lines
1,021 B
Ruby
43 lines
1,021 B
Ruby
require "application_system_test_case"
|
|
|
|
class CommandsTest < ApplicationSystemTestCase
|
|
setup do
|
|
@command = commands(:one)
|
|
end
|
|
|
|
test "visiting the index" do
|
|
visit commands_url
|
|
assert_selector "h1", text: "Commands"
|
|
end
|
|
|
|
test "should create command" do
|
|
visit commands_url
|
|
click_on "New command"
|
|
|
|
fill_in "Datatype", with: @command.datatype_id
|
|
fill_in "Name", with: @command.name
|
|
click_on "Create Command"
|
|
|
|
assert_text "Command was successfully created"
|
|
click_on "Back"
|
|
end
|
|
|
|
test "should update Command" do
|
|
visit command_url(@command)
|
|
click_on "Edit this command", match: :first
|
|
|
|
fill_in "Datatype", with: @command.datatype_id
|
|
fill_in "Name", with: @command.name
|
|
click_on "Update Command"
|
|
|
|
assert_text "Command was successfully updated"
|
|
click_on "Back"
|
|
end
|
|
|
|
test "should destroy Command" do
|
|
visit command_url(@command)
|
|
click_on "Destroy this command", match: :first
|
|
|
|
assert_text "Command was successfully destroyed"
|
|
end
|
|
end
|