Sha256: 2aaff74a36edb6a9295661a9a8d65c6b033c4f8e567318c78745bba68113cea5
Contents?: true
Size: 533 Bytes
Versions: 24
Compression:
Stored size: 533 Bytes
Contents
require 'test_helper' module Shipit module Api class OutputsControllerTest < ActionController::TestCase setup do @stack = shipit_stacks(:shipit) authenticate! end test "#show returns the task output as plain text" do task = @stack.tasks.last get :show, params: {stack_id: @stack.to_param, task_id: task.id} assert_response :ok assert_equal 'text/plain', response.content_type assert_equal task.chunk_output, response.body end end end end
Version data entries
24 entries across 24 versions & 1 rubygems