Sha256: 2b116831f948cdf0d10fcbd8fb5aacec7364129324281c7e2c8ad560f62aa2b5
Contents?: true
Size: 605 Bytes
Versions: 17
Compression:
Stored size: 605 Bytes
Contents
require 'hybrid_platforms_conductor/test_only_remote_node' module HybridPlatformsConductor module HpcPlugins module Test # Test that the hostname is correct class Hostname < TestOnlyRemoteNode # Check my_test_plugin.rb.sample documentation for signature details. def test_on_node { "#{@actions_executor.sudo_prefix(@node)}hostname -s" => proc do |stdout| assert_equal stdout.first, @node, "Expected hostname to be #{@node}, but got #{stdout.first} instead." end } end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems