Sha256: 27fd0fa082c4eacb39852fb9d3b5fba33ee54f17a686fc18886b33a00c751ee3
Contents?: true
Size: 568 Bytes
Versions: 21
Compression:
Stored size: 568 Bytes
Contents
require 'spec_helper' describe DynamicFieldsets::DateField do before do @date = DynamicFieldsets::DateField.new end subject { @date } describe "mixins" do it "should include the single answer mixin" end # instance methods it { should respond_to :get_date_or_today } describe ".get_date_or_today" do it "should return the inputted date" it "should return today if the inputted date is empty" end describe ".form_partial_locals" do it "should call super" it "should include start year and default in the output" end end
Version data entries
21 entries across 21 versions & 1 rubygems