ruby on rails - Notifications not working with Test::Unit on Mac -
i've got rails project test suite uses test::unit. i'm trying set guard , spork run tests automatically , fire notifications on pass/fail; guard , spork running fine, , fire notification when start up, can't test notifications work. i've tried using both growl , mac os x notifications terminal-notifier-guard. here's relevant part of gemfile: group :test gem 'sqlite3' gem 'selenium-webdriver' gem 'rr', :require => false gem 'capybara' gem 'database_cleaner' gem 'timecop' end group :test, :development gem 'guard' gem 'spork' gem 'spork-testunit' gem 'guard-test' gem 'guard-rake' gem 'guard-spork' gem 'terminal-notifier-guard', :require => false gem 'rb-inotify', require: false gem 'rb-fsevent', require: false gem 'rb-fchange', require: false end and test_helper.rb: # -*- encoding : utf-8 -*- ...