ROBOTestFrame/add_configuration [ Functions ]
FUNCTION
Add a configuration file somewhere in Config/
INPUTS
- filepath -- path to a file.
- configuration -- the content for this file
- binary -- write the raw bytes. [optional]
SOURCE
sub add_configuration { my $filepath = shift; my $configuration = shift; my $binary = shift; add_file( $configuration_directory, $filepath, $configuration, $binary ) }