test_notifier 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/README.txt +0 -2
- data/lib/test_notifier/autotest.rb +1 -1
- data/lib/test_notifier/rspec.rb +1 -1
- data/lib/test_notifier/test_unit.rb +1 -1
- data/lib/test_notifier/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -3,5 +3,5 @@ require 'test_notifier'
|
|
3
3
|
Autotest.add_hook :ran_command do |at|
|
4
4
|
content = at.results.to_s
|
5
5
|
|
6
|
-
TestNotifier.rspec?(content) ? TestNotifier
|
6
|
+
TestNotifier.rspec?(content) ? TestNotifier.notification_for_rspec(content) : TestNotifier.notification_for_test_unit(content)
|
7
7
|
end
|
data/lib/test_notifier/rspec.rb
CHANGED