Merge branch '18642-don-t-install-ruby-bundler'
[arvados-formula.git] / test / integration / workbench / controls / packages_spec.rb
1 # frozen_string_literal: true
2
3 control 'ruby bundler package' do
4   title 'should not be installed'
5
6   describe package('ruby-bundler') do
7     it { should_not be_installed }
8   end
9   describe package('bundler') do
10     it { should_not be_installed }
11   end
12 end
13
14 control 'arvados workbench package' do
15   title 'should be installed'
16
17   describe package('arvados-workbench') do
18     it { should be_installed }
19   end
20 end