Sha256: d121abb0ad6128017807b2c7a668cc25d4a32e335245ff66e5c44b5c166132c3
Contents?: true
Size: 571 Bytes
Versions: 34
Compression:
Stored size: 571 Bytes
Contents
Given /^an information form exists$/ do # note that we are ignoring validations for this in case the fieldset has required fields @information_form = InformationForm.new(:name => "Test information form") @information_form.save(:validate => false) end Given /^a fieldset associator exists$/ do @fieldset_associator = DynamicFieldsets::FieldsetAssociator.create( :fieldset_model_id => InformationForm.last.id, :fieldset_model_type => "InformationForm", :fieldset_model_name => ":child_form", :fieldset_id => DynamicFieldsets::Fieldset.last.id) end
Version data entries
34 entries across 34 versions & 1 rubygems