closes #6465
[arvados.git] / apps / workbench / test / controllers / projects_controller_test.rb
index 7f2b2cd3f2818483920e9284bd95133a8a29fd21..4be4c089a2864f85b61bff83064a54d1a366e8cd 100644 (file)
@@ -341,9 +341,13 @@ class ProjectsControllerTest < ActionController::TestCase
     project = api_fixture('groups')['aproject']
     use_token :active
     found = Group.find(project['uuid'])
+
+    # uses 'Link to object' as a hyperlink for the object
     found.description = '"Link to object":' + api_fixture('groups')['asubproject']['uuid']
     found.save!
     get(:show, {id: project['uuid']}, session_for(:active))
+
+    # check that input was converted to textile, not staying as inputted
     refute_includes  @response.body,'"Link to object"'
     refute_empty css_select('[href="/groups/zzzzz-j7d0g-axqo7eu9pwvna1x"]')
   end