We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aece7e commit fe1c018Copy full SHA for fe1c018
spec/defines/pip_spec.rb
@@ -94,6 +94,14 @@
94
end
95
96
97
+ describe 'install_args as' do
98
+ context 'adds install_args to install command if install_args set' do
99
+ let(:params) { { install_args: '--pre' } }
100
+
101
+ it { is_expected.to contain_exec('pip_install_rpyc').with_command('pip --log /tmp/pip.log install --pre rpyc') }
102
+ end
103
104
105
describe 'install latest' do
106
context 'does not use pip search in unless' do
107
let(:params) { { ensure: 'latest' } }
0 commit comments