Skip to content

(maint) remove references to beaker method step #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
end

agents.each do |agent|
step "Emit CommonProgramFiles environment variable"
# Emit CommonProgramFiles environment variable
program_files = agent.get_env_var('ProgramFiles').split('=')[1]
agent.add_env_var('CommonProgramFiles', "#{program_files}\\Common Files")

step "Install sqlserver module to agent #{agent.node_name}"
# Install sqlserver module to agent
result = on agent, "echo #{agent['distmoduledir']}"
target = result.raw_output.chomp
proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
Expand Down
4 changes: 2 additions & 2 deletions spec/sql_testing_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ def base_install(sql_version)
}
end
host = find_only_one('sql_host')
step "Mount the ISO on the aggent #{host.node_name}"
# Mount the ISO on the agent
mount_iso(host, iso_opts)
step "Install Microsoft SQL #{sql_version} on the agent #{host.node_name} before running any tests"
# Install Microsoft SQL on the agent before running any tests
install_sqlserver(host, {:features => 'SQL'})
end