Displaying 1 result from an estimated 1 matches for "labelledbuilder".
2007 Aug 06
2
Specifying custom rails FormBuilders
I want to write a spec for a custom form builder, but I''m not really
sure where it should live or how to include the right rspec_on_rails
contexts. Ideally, I should be able to write a spec like:
describe LabelledBuilder do
it "should let me create a text field" do
object = mock(object)
object.stub!(:attribute).and_return("Test String")
render :inline =>
"<% form_for(@object, :builder => LabelledBuilder) do |f| -%>
<%= f.text_field :attribute...