Sha256: 03dd32d2e4e2d695db8eb24db7150529bddd6c8d58e40b5606d87a236ef7d51e
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
require 'spec_helper' include DynamicFieldsets describe FieldWithFieldOptions do it "should not use CheckboxField to test the mixin" do pending "needs to use it's own class" end describe "class methods" do it { DynamicFieldsets::CheckboxField.should respond_to :acts_as_field_with_field_options } end describe "validations" do it "should call at_least_one_field_option" end describe "instance methods" do before do @field = DynamicFieldsets::CheckboxField.new end subject { @field } it { should respond_to :collect_field_records_by_fsa_and_fsc } describe "collect_field_records_by_fsa_and_fsc" do it "needs tests" end it { should respond_to :get_value_for_show } describe ".get_value_for_show" do it "needs tests" end it { should respond_to :uses_field_options? } describe ".uses_field_options?" do it "needs tests" end it { should respond_to :at_least_one_field_option } describe ".at_least_one_field_option" do it " needs tests" end it { should respond_to :options } describe ".options" do it "needs tests" end end end
Version data entries
10 entries across 10 versions & 1 rubygems