Skip to content

Commit

Permalink
Mark some examples as pending due to the issue in conversion of #unstub
Browse files Browse the repository at this point in the history
  • Loading branch information
yujinakayama committed Apr 3, 2014
1 parent 74c1735 commit 0ecd51f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions spec/guard/ui_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
end

it 'logs the message to with the info severity' do
pending 'See: https://github.com/rspec/rspec-mocks/issues/613'
Guard::UI.logger.should_receive(:info).with('Info message', 'Guard::UiSpec')
Guard::UI.info 'Info message'
end
Expand Down Expand Up @@ -92,6 +93,7 @@
end

it 'logs the message to with the warn severity' do
pending 'See: https://github.com/rspec/rspec-mocks/issues/613'
Guard::UI.logger.should_receive(:warn).with("\e[0;33mWarn message\e[0m", 'Guard::UiSpec')
Guard::UI.warning 'Warn message'
end
Expand Down Expand Up @@ -132,6 +134,7 @@
end

it 'logs the message to with the error severity' do
pending 'See: https://github.com/rspec/rspec-mocks/issues/613'
Guard::UI.logger.should_receive(:error).with("\e[0;31mError message\e[0m", 'Guard::UiSpec')
Guard::UI.error 'Error message'
end
Expand Down Expand Up @@ -172,6 +175,7 @@
end

it 'logs the message to with the warn severity' do
pending 'See: https://github.com/rspec/rspec-mocks/issues/613'
Guard::UI.logger.should_receive(:warn).with("\e[0;33mDeprecation message\e[0m", 'Guard::UiSpec')
Guard::UI.deprecation 'Deprecation message'
end
Expand Down Expand Up @@ -212,6 +216,7 @@
end

it 'logs the message to with the debug severity' do
pending 'See: https://github.com/rspec/rspec-mocks/issues/613'
Guard::UI.logger.should_receive(:debug).with("\e[0;33mDebug message\e[0m", 'Guard::UiSpec')
Guard::UI.debug 'Debug message'
end
Expand Down

0 comments on commit 0ecd51f

Please sign in to comment.