Sha256: 31061c0fea67f31be6c068157ab4e4c260c3d4e8bcfd9650404e271760c2f04d
Contents?: true
Size: 717 Bytes
Versions: 34
Compression:
Stored size: 717 Bytes
Contents
require 'hybrid_platforms_conductor/test_only_remote_node' module HybridPlatformsConductor module HpcPlugins module Test # Test that the connection works by simply outputing something class Connection < TestOnlyRemoteNode 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
34 entries across 34 versions & 1 rubygems