Skip to content

Commit

Permalink
Boy scout work: resolve rspec3 ambiguous symbol warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wstephenson committed Aug 19, 2014
1 parent 894b67c commit 9ec9a40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/connect/zypper/product_status_spec.rb
Expand Up @@ -23,7 +23,7 @@

describe '#registration_status?' do

context :product_is_registered do
context 'product is registered' do

it 'will be `Registered`' do
allow(subject).to receive(:registered?).and_return true
Expand All @@ -32,7 +32,7 @@

end

context :product_is_not_registered do
context 'product is not registered' do

it 'will be `Not Registered`' do
allow(subject).to receive(:registered?).and_return false
Expand Down
4 changes: 2 additions & 2 deletions spec/toolkit/curlrc_dotfile_spec.rb
Expand Up @@ -92,7 +92,7 @@

describe '#line_with_credentials' do

context :file_exist do
context 'file exists' do

before do
allow(subject).to receive(:exist?).and_return(true)
Expand All @@ -110,7 +110,7 @@

end

context :file_does_not_exist do
context 'file does not exist' do

before { allow(subject).to receive(:exist?).and_return(false) }

Expand Down

0 comments on commit 9ec9a40

Please sign in to comment.