1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/test_observer.rb
hsbt 4d6aeebbab * test/test_observer.rb: add tests for Observable module.
[fix GH-859] Patch by @brightbits

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-03-26 01:05:18 +00:00

65 lines
1.4 KiB
Ruby

require 'test/unit'
require 'observer'
class TestObserver < Test::Unit::TestCase
class TestObservable
include Observable
def notify(*args)
changed
notify_observers(*args)
end
end
class TestWatcher
def initialize(observable)
@notifications = []
observable.add_observer(self)
end
attr_reader :notifications
def update(*args)
@notifications << args
end
end
def test_observers
observable = TestObservable.new
assert_equal(0, observable.count_observers)
watcher1 = TestWatcher.new(observable)
assert_equal(1, observable.count_observers)
observable.notify("test", 123)
watcher2 = TestWatcher.new(observable)
assert_equal(2, observable.count_observers)
observable.notify(42)
assert_equal([["test", 123], [42]], watcher1.notifications)
assert_equal([[42]], watcher2.notifications)
observable.delete_observer(watcher1)
assert_equal(1, observable.count_observers)
observable.notify(:cats)
assert_equal([["test", 123], [42]], watcher1.notifications)
assert_equal([[42], [:cats]], watcher2.notifications)
observable.delete_observers
assert_equal(0, observable.count_observers)
observable.notify("nope")
assert_equal([["test", 123], [42]], watcher1.notifications)
assert_equal([[42], [:cats]], watcher2.notifications)
end
end