Sha256: 36c4d0c4a6da66ae96e2916ca29b91e413c8397c300a4bbb8c9ad8725901042c
Contents?: true
Size: 1.13 KB
Versions: 67
Compression:
Stored size: 1.13 KB
Contents
module HybridPlatformsConductorTest module Helpers module PlatformHandlerHelpers # Return the test platforms info, used by the test PlatformHandler # # Result:: # * *Hash<String, Hash>: Platforms info, per platform name (see TestPlatformHandler#platforms_info for details) def test_platforms_info HybridPlatformsConductorTest::PlatformHandlerPlugins::Test.platforms_info end # Set the test platforms info, used by the test PlatformHandler # # Parameters:: # * *platforms_info* (Hash<String, Hash>): Platforms info, per platform name (see TestPlatformHandler#platforms_info for details) def test_platforms_info=(platforms_info) HybridPlatformsConductorTest::PlatformHandlerPlugins::Test.platforms_info = platforms_info end # Register the given platform handler classes # # Parameters:: # * *platform_handlers* (Hash<Symbol,Class>): The platform handler classes, per platform type name def register_platform_handlers(platform_handlers) register_plugins(:platform_handler, platform_handlers) end end end end
Version data entries
67 entries across 67 versions & 1 rubygems