Sha256: da3f89544cf9e9ed1beaa988131fb888cd816c48f15c8352e567257abf24a8ee
Contents?: true
Size: 1.01 KB
Versions: 20
Compression:
Stored size: 1.01 KB
Contents
require 'test_helper' class CommitChecksControllerTest < ActionController::TestCase setup do @commit = commits(:fifth) @checks = @commit.checks @stack = @commit.stack @checks.write('foobar') @checks.status = 'running' session[:user_id] = users(:walrus).id end test ":tail is success" do get :tail, stack_id: @stack.to_param, sha: @commit.sha assert_response :success assert_json 'output', 'foobar' assert_json 'url', stack_tail_commit_checks_path(@stack, sha: @commit.sha, since: 6) assert_json 'status', 'running' end test ":tail doesn't provide another url if the task is finished" do @checks.status = 'success' get :tail, stack_id: @stack.to_param, sha: @commit.sha assert_response :success assert_json 'url', nil end test ":tail returns only the output after the provided offset" do @checks.status = 'success' get :tail, stack_id: @stack.to_param, sha: @commit.sha, since: 5 assert_response :success assert_json 'output', 'r' end end
Version data entries
20 entries across 20 versions & 1 rubygems