Class: Producer::Core::Tests::HasEnv

Inherits:
Producer::Core::Test show all
Defined in:
lib/producer/core/tests/has_env.rb

Instance Attribute Summary

Attributes inherited from Producer::Core::Test

#arguments, #env

Instance Method Summary collapse

Methods inherited from Producer::Core::Test

#initialize, #negated?, #pass?

Constructor Details

This class inherits a constructor from Producer::Core::Test

Instance Method Details

#verifyObject



5
6
7
8
9
10
11
12
# File 'lib/producer/core/tests/has_env.rb', line 5

def verify
  case arguments.size
  when 1
    remote.environment.key? key
  when 2
    remote.environment[key] == arguments.last
  end
end