Sha256: 22651ec31b364dff34c4080f255a40792e7406069fbac777ca9f41c3d7e1faf9
Contents?: true
Size: 722 Bytes
Versions: 10
Compression:
Stored size: 722 Bytes
Contents
require 'test_helper' module Shipit class CacheDeploySpecJobTest < ActiveSupport::TestCase setup do @stack = shipit_stacks(:shipit) @last_commit = @stack.commits.last @job = CacheDeploySpecJob.new end test "#perform checkout the repository to the last recorded commit and cache the deploy spec" do @stack.update!(cached_deploy_spec: DeploySpec.new('review' => {'checklist' => %w(foo bar)})) dir = Pathname(Dir.tmpdir) StackCommands.any_instance.expects(:with_temporary_working_directory).with(commit: @last_commit).yields(dir) assert_equal %w(foo bar), @stack.checklist @job.perform(@stack) assert_equal [], @stack.reload.checklist end end end
Version data entries
10 entries across 10 versions & 1 rubygems