Method: BaseLoginProxy#method_missing

Defined in:
lib/community_engine/authenticated_test_helper.rb

#method_missing(method, *args) ⇒ Object (private)



41
42
43
44
45
46
# File 'lib/community_engine/authenticated_test_helper.rb', line 41

def method_missing(method, *args)
  @controller.reset!
  authenticate
  @controller.send(method, *args)
  check
end