Sha256: e60084c09d054e1750d0c4470fe45c4b72d6f56664c58bf615d9beeefd5fde68
Contents?: true
Size: 1.64 KB
Versions: 3
Compression:
Stored size: 1.64 KB
Contents
class FeatureInheritanceTest < BaseTest Song = Struct.new(:title, :album, :composer) Album = Struct.new(:name, :songs, :artist) Artist = Struct.new(:name) module Date def date "May 16" end def self.included(includer) includer.send :register_feature, self end end # module Name # def name # "Violins" # end # end class AlbumForm < TestForm feature Date # feature. property :name collection :songs do property :title property :composer do property :name end end property :artist do property :name end end let(:song) { Song.new("Broken") } let(:song_with_composer) { Song.new("Resist Stance", nil, composer) } let(:composer) { Artist.new("Greg Graffin") } let(:artist) { Artist.new("Bad Religion") } let(:album) { Album.new("The Dissent Of Man", [song, song_with_composer], artist) } let(:form) { AlbumForm.new(album) } it do form.date.must_equal "May 16" form.songs[0].date.must_equal "May 16" end # it { subject.class.include?(Reform::Form::ActiveModel) } # it { subject.class.include?(Reform::Form::Coercion) } # it { subject.is_a?(Reform::Form::MultiParameterAttributes) } # it { subject.band.class.include?(Reform::Form::ActiveModel) } # it { subject.band.is_a?(Reform::Form::Coercion) } # it { subject.band.is_a?(Reform::Form::MultiParameterAttributes) } # it { subject.band.label.is_a?(Reform::Form::ActiveModel) } # it { subject.band.label.is_a?(Reform::Form::Coercion) } # it { subject.band.label.is_a?(Reform::Form::MultiParameterAttributes) } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reform-2.3.2 | test/feature_test.rb |
reform-2.3.1 | test/feature_test.rb |
reform-2.3.0.rc2 | test/feature_test.rb |