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 8f61ed5 commit 0251f91Copy full SHA for 0251f91
spec/acceptance/rbenv_default_spec.rb
@@ -36,6 +36,13 @@
36
user => $user,
37
ruby => $ruby_version,
38
}
39
+
40
+ rbenv::rubygems { 'tester-3.4.1':
41
+ user => $user,
42
+ version => '3.4.1',
43
+ ruby => $ruby_version,
44
+ home => $home,
45
+ }
46
MANIFEST
47
end
48
@@ -63,4 +70,8 @@
63
70
describe command "su - rbenv-user -s /bin/bash -c 'gem info geordi'" do
64
71
its(:stdout) { should contain 'Henning Koch' }
65
72
73
74
+ describe command "su - rbenv-user -s /bin/bash -c 'gem --version'" do
75
+ its(:stdout) { should contain '3.4.1' }
76
+ end
66
77
0 commit comments