Class: Screenplay::DataActor

Inherits:
Actor
  • Object
show all
Defined in:
lib/screenplay/actors/data.rb

Instance Attribute Summary

Attributes inherited from Actor

#name

Instance Method Summary collapse

Methods inherited from Actor

#configure, descendants, #initialize

Constructor Details

This class inherits a constructor from Screenplay::Actor

Instance Method Details

#play(params, input) ⇒ Object



7
8
9
10
# File 'lib/screenplay/actors/data.rb', line 7

def play(params, input)
	input.merge!(params)
	return input
end