X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eff37344f3cecd5aed259c9852aca4bdcdfb6922..dc96093e6a9d30699ea06d65ebe1ffe6d59977b9:/apps/workbench/test/integration/user_manage_account_test.rb diff --git a/apps/workbench/test/integration/user_manage_account_test.rb b/apps/workbench/test/integration/user_manage_account_test.rb index 9b5e5d61e1..6d680e2d67 100644 --- a/apps/workbench/test/integration/user_manage_account_test.rb +++ b/apps/workbench/test/integration/user_manage_account_test.rb @@ -171,4 +171,14 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest assert_text 'A request for shell access was sent on ' assert_selector 'a', text: 'Send request for shell access' end + + test "create new repository" do + visit page_with_token("active_trustedclient", "/manage_account") + click_on "Add new repository" + within ".modal-dialog" do + fill_in "Name", with: "workbenchtest" + click_on "Create" + end + assert_text ":active/workbenchtest.git" + end end