Sha256: 78cee89aa304637ff90875a50d5147b0c0798defa801afc8bd027b0aad0e92ef

Contents?: true

Size: 1.16 KB

Versions: 3

Compression:

Stored size: 1.16 KB

Contents

require "test_helper"
require "reform/form/coercion"

class ChangedTest < MiniTest::Spec
  Song  = Struct.new(:title, :album, :composer)
  Album = Struct.new(:name, :songs, :artist)
  Artist = Struct.new(:name)

  class AlbumForm < TestForm
    property :name

    collection :songs do
      property :title

      property :composer do
        property :name
      end
    end
  end

  let(:song_with_composer) { Song.new("Resist Stance", nil, composer) }
  let(:composer)           { Artist.new("Greg Graffin") }
  let(:album)              { Album.new("The Dissent Of Man", [song_with_composer]) }

  let(:form) { AlbumForm.new(album) }

  # nothing changed after setup.
  it do
    form.changed?(:name).must_equal false
    form.songs[0].changed?(:title).must_equal false
    form.songs[0].composer.changed?(:name).must_equal false
  end

  # after validate, things might have changed.
  it do
    form.validate("name" => "Out Of Bounds", "songs" => [{"composer" => {"name" => "Ingemar Jansson & Mikael Danielsson"}}])
    form.changed?(:name).must_equal true
    form.songs[0].changed?(:title).must_equal false
    form.songs[0].composer.changed?(:name).must_equal true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reform-2.3.2 test/changed_test.rb
reform-2.3.1 test/changed_test.rb
reform-2.3.0.rc2 test/changed_test.rb