Module: FocusedController::FunctionalTestHelper

Defined in:
lib/focused_controller/functional_test_helper.rb

Instance Method Summary collapse

Instance Method Details

#delete(*args) ⇒ Object



18
19
20
# File 'lib/focused_controller/functional_test_helper.rb', line 18

def delete(*args)
  super(*args_with_action_name(*args))
end

#get(*args) ⇒ Object



5
6
7
8
# File 'lib/focused_controller/functional_test_helper.rb', line 5

def get(*args)
  new_args = args_with_action_name(*args)
  super(*new_args)
end

#head(*args) ⇒ Object



22
23
24
# File 'lib/focused_controller/functional_test_helper.rb', line 22

def head(*args)
  super(*args_with_action_name(*args))
end

#post(*args) ⇒ Object



10
11
12
# File 'lib/focused_controller/functional_test_helper.rb', line 10

def post(*args)
  super(*args_with_action_name(*args))
end

#put(*args) ⇒ Object



14
15
16
# File 'lib/focused_controller/functional_test_helper.rb', line 14

def put(*args)
  super(*args_with_action_name(*args))
end