class TestUIViewControllerWithEventable

Public Instance Methods

bar() click to toggle source
# File spec/motion/reactor/eventable_spec.rb, line 159
def bar
end
dealloc() click to toggle source
Calls superclass method
# File spec/motion/reactor/eventable_spec.rb, line 162
def dealloc
  $test_dealloc = true
  super
end
test_on() click to toggle source
# File spec/motion/reactor/eventable_spec.rb, line 153
def test_on
  on(:foo) do
  end
  method(:bar)
end