Sha256: 541f6faebafd4703f92f84a55c2493bc74dda6bf04257bc346c1d791fc263678

Contents?: true

Size: 1.16 KB

Versions: 1

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

1 entries across 1 versions & 1 rubygems

Version Path
reform-2.3.0.rc1 test/changed_test.rb