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 4b8a359 commit bc55ddeCopy full SHA for bc55dde
spec/completely/installer_spec.rb
@@ -24,7 +24,8 @@
24
it 'returns the command without sudo' do
25
allow(subject).to receive(:root_user?).and_return true
26
27
- expect(subject.command).to eq %w[cp completions.bash /usr/share/bash-completion/completions/completely-test]
+ expect(subject.command)
28
+ .to eq %w[cp completions.bash /usr/share/bash-completion/completions/completely-test]
29
end
30
31
@@ -37,7 +38,8 @@
37
38
39
describe '#target_path' do
40
it 'returns the first matching path' do
- expect(subject.target_path).to eq '/usr/share/bash-completion/completions/completely-test'
41
+ expect(subject.target_path)
42
+ .to eq '/usr/share/bash-completion/completions/completely-test'
43
44
45
0 commit comments