Module FormTestHelper::FieldProxy
In: lib/form_test_helper.rb

Gets mixed into field values (strings, arrays) to make them respond to field methods

Methods

Attributes

field  [RW] 

Public Instance methods

[Source]

     # File lib/form_test_helper.rb, line 195
195:     def method_missing(*args)
196:       @field.send(*args)
197:     end

[Validate]