master/spec/guard/notifier_spec.rb

58 lines
1.5 KiB
Ruby
Raw Normal View History

2010-10-03 21:00:33 +00:00
require 'spec_helper'
describe Guard::Notifier do
subject { Guard::Notifier }
describe ".notify" do
before(:each) { subject.turn_on }
after(:each) { subject.turn_off }
if mac?
if growl_installed?
it "uses Growl on Mac OS X" do
Growl.should_receive(:notify).with("great",
:title => "Guard",
:icon => Pathname.new(File.dirname(__FILE__)).join('../../images/success.png').to_s,
:name => "Guard"
)
subject.notify 'great', :title => 'Guard'
end
else
it { should_not be_enabled }
end
end
if linux?
if libnotify_installed?
it "uses Libnotify on Linux" do
Libnotify.should_receive(:show).with(
:body => "great",
:summary => 'Guard',
:icon_path => Pathname.new(File.dirname(__FILE__)).join('../../images/success.png').to_s
)
subject.notify 'great', :title => 'Guard'
end
else
it { should_not be_enabled }
end
2010-10-03 21:00:33 +00:00
end
end
describe ".turn_off" do
if mac? && growl_installed?
it "prevents the notifications" do
Growl.should_not_receive(:notify)
2010-10-21 08:27:31 +00:00
subject.notify 'great', :title => 'Guard'
end
2011-05-07 16:40:13 +00:00
elsif linux? && libnotify_installed?
it "prevents the notifications" do
Libnotify.should_not_receive(:show)
subject.notify 'great', :title => 'Guard'
end
end
it { should_not be_enabled }
2010-10-03 21:00:33 +00:00
end
end