Я хочу проверить проверки для модели Post
.На данный момент у меня есть это:
class Asset < ActiveRecord::Base
belongs_to :post
has_attached_file :image,
styles: {
thumb: "100x100#",
small: "300x300>",
large: "600x600>" }
validates_attachment_content_type :image, content_type: ['image/jpeg', 'image/png', 'image/gif'], allow_blank: true
validates_attachment_size :image, less_than: 1.megabyte, allow_blank: true
end
#post model
class Post < ActiveRecord::Base
belongs_to :user
has_many :assets, dependent: :destroy
accepts_nested_attributes_for :assets, allow_destroy: true
attr_accessible :title, :description, :price, :status, :pageviews, :assets_attributes
end
проверки должны происходить для модели пост.вещь, так как я новичок в TDD.Также я хочу проверить наличие поля input
для загрузки файлов на new_post_path
.
Спасибо!