Sha256: cc3cfed97a0e55aa3000d1734d67f1398eafc55a1dfec756c0851a4b2b3d9b59

Contents?: true

Size: 442 Bytes

Versions: 26

Compression:

Stored size: 442 Bytes

Contents

require 'chef-dk/command/base'

module ChefDK
  module Command
    class TestCommand < ChefDK::Command::Base

      def self.reset!
        @test_result = nil
      end

      def self.test_result
        @test_result
      end

      def self.test_result=(result)
        @test_result = result
      end

      def run(params)
        self.class.test_result = {:status => :success, :params => params}
        23
      end

    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
chef-dk-1.2.22 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-1.2.20 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-1.1.16 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-1.0.3 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.19.6 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.18.30 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.18.26 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.17.17 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.16.28 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.14.25 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.11.2 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.11.0 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.10.0 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.8.0 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.7.0 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.6.2 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.6.1 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.6.0 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.5.1 spec/unit/fixtures/command/cli_test_command.rb
chef-dk-0.5.0 spec/unit/fixtures/command/cli_test_command.rb