3 class Arvados::V1::PipelineInstancesControllerTest < ActionController::TestCase
5 test 'create pipeline with components copied from template' do
9 pipeline_template_uuid: pipeline_templates(:two_part).uuid
12 assert_response :success
13 assert_equal(pipeline_templates(:two_part).components.to_json,
14 assigns(:object).components.to_json)
17 test 'create pipeline with no template' do
18 authorize_with :active
24 assert_response :success
25 assert_equal({}, assigns(:object).components)