Sha256: d4b97725db4ea04e02925cb4bd07dba345e2058c8104a1353544aca2f3637805
Contents?: true
Size: 669 Bytes
Versions: 33
Compression:
Stored size: 669 Bytes
Contents
module HybridPlatformsConductor module HpcPlugins module Test # Test that the connection works by simply outputing something class Connection < HybridPlatformsConductor::Test TEST_CONNECTION_STRING = 'Test connection - ok' # Check my_test_plugin.rb.sample documentation for signature details. def test_on_node node_connection_string = "#{TEST_CONNECTION_STRING} for #{@node}" { "echo '#{node_connection_string}'" => proc do |stdout| assert_equal stdout.first, node_connection_string, 'Connection failed' end } end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems