2010-10-03 21:00:33 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Guard::Notifier do
|
|
|
|
subject { Guard::Notifier }
|
|
|
|
|
|
|
|
describe "notify" do
|
|
|
|
before(:each) { ENV["GUARD_ENV"] = 'special_test' }
|
|
|
|
|
2010-10-17 19:42:40 +00:00
|
|
|
if mac?
|
2010-10-19 19:49:17 +00:00
|
|
|
require 'growl'
|
2010-10-17 19:42:40 +00:00
|
|
|
it "should use 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
|
2010-10-03 21:00:33 +00:00
|
|
|
end
|
|
|
|
|
2010-10-17 19:42:40 +00:00
|
|
|
if linux?
|
2010-10-21 08:27:31 +00:00
|
|
|
require 'libnotify'
|
2010-10-17 19:42:40 +00:00
|
|
|
it "should use Libnotify on Linux" do
|
|
|
|
Libnotify.should_receive(:show).with(
|
|
|
|
:body => "great",
|
|
|
|
:summary => 'Guard',
|
2010-10-21 08:27:31 +00:00
|
|
|
:icon_path => Pathname.new(File.dirname(__FILE__)).join('../../images/success.png').to_s
|
2010-10-17 19:42:40 +00:00
|
|
|
)
|
2010-10-21 08:27:31 +00:00
|
|
|
subject.notify 'great', :title => 'Guard'
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|
|
|
|
end
|
2010-10-03 21:00:33 +00:00
|
|
|
|
|
|
|
after(:each) { ENV["GUARD_ENV"] = 'test' }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|