Sha256: a1763c57edf818e7b488eb4c890e7540868e2c8240298a7f76dbaca16cca3553
Contents?: true
Size: 1.16 KB
Versions: 10
Compression:
Stored size: 1.16 KB
Contents
require 'spec_helper' include DynamicFieldsets describe FieldWithMultipleAnswers 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_multiple_answers } end describe "instance methods" do before do @field = DynamicFieldsets::CheckboxField.new end subject { @field } it { should respond_to :show_partial_locals } describe ".show_partial_locals" do it "needs tests" end it { should respond_to :update_field_records } describe ".update_field_records" do it "needs tests" end it { should respond_to :get_values_using_fsa_and_fsc } describe ".get_values_using_fsa_and_fsc" do it "needs tests" end it { should respond_to :show_partial } describe ".show_partial" do it "needs tests" end it { should respond_to :defaults } describe ".defaults" do it "needs tests" end it { should respond_to :values_or_defaults_for_form } describe ".values_or_defaults_for_form" do it "needs tests" end end end
Version data entries
10 entries across 10 versions & 1 rubygems