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
kazu 82f61a1336 lib/observer.rb: Specify frozen_string_literal: true.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57321 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-01-13 12:08:29 +00:00

66 lines
1.4 KiB
Ruby

# frozen_string_literal: true
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