X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6c2a704b7a2d721087976b2b8ec4f22cdaf44178..c7cf228372bee18d84b14fc4089a758bc157fe76:/apps/workbench/test/integration/virtual_machines_test.rb diff --git a/apps/workbench/test/integration/virtual_machines_test.rb b/apps/workbench/test/integration/virtual_machines_test.rb deleted file mode 100644 index 26da0d0b03..0000000000 --- a/apps/workbench/test/integration/virtual_machines_test.rb +++ /dev/null @@ -1,17 +0,0 @@ -require 'integration_helper' - -class VirtualMachinesTest < ActionDispatch::IntegrationTest - test "make and name a new virtual machine" do - Capybara.current_driver = Capybara.javascript_driver - visit page_with_token('admin_trustedclient') - click_link 'Virtual machines' - assert page.has_text? 'testvm.shell' - click_on 'Add a new virtual machine' - find('tr', text: 'hostname'). - find('span', text: 'none').click - assert page.has_text? 'Update hostname' - fill_in 'editable-text', with: 'testname' - click_button 'editable-submit' - assert page.has_text? 'testname' - end -end