3 class ContainerRequestsControllerTest < ActionController::TestCase
4 test "visit container_request log" do
7 cr = api_fixture('container_requests')['completed']
8 container_uuid = cr['container_uuid']
9 container = Container.find(container_uuid)
11 get :show, {id: cr['uuid'], tab_pane: 'Log'}, session_for(:active)
12 assert_response :success
14 assert_select "a", {:href=>"/collections/#{container['log']}", :text=>"Download the log"}
15 assert_select "a", {:href=>"#{container['log']}/baz"}