Sha256: 82a0740214a98f66c32ded9ab04d0e6b4d78ce3ad81e177adf60f19051f8dcf1

Contents?: true

Size: 1.43 KB

Versions: 5

Compression:

Stored size: 1.43 KB

Contents

require 'reform'
require 'minitest/autorun'
require "representable/debug"
require "pp"

class ReformSpec < MiniTest::Spec
  let (:duran)  { Struct.new(:name).new("Duran Duran") }
  let (:rio)    { Struct.new(:title).new("Rio") }
end

require 'active_record'
class Artist < ActiveRecord::Base
end

class Song < ActiveRecord::Base
  belongs_to :artist
end

class Album < ActiveRecord::Base
  has_many :songs
end

ActiveRecord::Base.establish_connection(
  :adapter => "sqlite3",
  :database => "#{Dir.pwd}/database.sqlite3"
)


#Artist.delete_all

class BaseTest < MiniTest::Spec
  class AlbumForm < Reform::Form
    property :title

    property :hit do
      property :title
    end

    collection :songs do
      property :title
    end
  end

  Song   = Struct.new(:title, :length)
  Album  = Struct.new(:title, :hit, :songs, :band)
  Band   = Struct.new(:label)
  Label  = Struct.new(:name)
  Length = Struct.new(:minutes, :seconds)


  let (:hit) { Song.new("Roxanne") }
end

MiniTest::Spec.class_eval do
  module Saveable
    def save
      @saved = true
    end

    def saved?
      @saved
    end
  end

  def self.rails4_0?
    ::ActiveModel::VERSION::MAJOR == 4 and ::ActiveModel::VERSION::MINOR == 0
  end

  def self.rails3_2?
    ::ActiveModel::VERSION::MAJOR == 3 and ::ActiveModel::VERSION::MINOR == 2
  end
end

require "reform/form/active_model/validations"
Reform::Contract.class_eval do
  include Reform::Form::ActiveModel::Validations
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
reform-2.0.2 test/test_helper.rb
reform-2.0.1 test/test_helper.rb
reform-2.0.0 test/test_helper.rb
reform-2.0.0.rc3 test/test_helper.rb
reform-2.0.0.rc2 test/test_helper.rb