Sha256: a58c89984a07afc869dfd597885b3b691c28336ec6d6ed670a2359f6a0b58cd7

Contents?: true

Size: 1.3 KB

Versions: 4

Compression:

Stored size: 1.3 KB

Contents

include ActionDispatch::TestProcess

Factory.define :user, :class => Adminpanel::User do |user|
	user.name "test user"
	user.email "email@test.com"
	user.password "123456"
	user.password_confirmation "123456"
end

Factory.define :gallery, :class => Adminpanel::Gallery do |gallery|
	gallery.file { fixture_file_upload(Rails.root.join('app', 'assets', 'images', 'hipster.jpg'), 'image/jpeg') }
end

Factory.define :image_section, :class => Adminpanel::Image do |image|
	image.file { fixture_file_upload(Rails.root.join('app', 'assets', 'images', 'hipster.jpg'), 'image/jpeg') }
end

Factory.define :product, :class => Adminpanel::Product do |product|
	product.price "12392.2"
	product.name "very little description"
	product.description "this is a little longer description, can be very long"
end

Factory.define :category, :class => Adminpanel::Category do |category|
	category.name "Test Category"
end

Factory.define :photo, :class => Adminpanel::Photo do |photo|
	photo.file { fixture_file_upload(Rails.root.join('app', 'assets', 'images', 'hipster.jpg'), 'image/jpeg') }
end

Factory.define :section_with_gallery, :class => Adminpanel::Section do |section|
	section.key "key"
	# section.description "<p>description</p>"
	section.has_image true
	section.has_description false
	section.name "section_name"
	section.page "index"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
adminpanel-1.2.9 spec/support/define_factory_models.rb
adminpanel-1.2.8 spec/support/define_factory_models.rb
adminpanel-1.2.7 spec/support/define_factory_models.rb
adminpanel-1.2.6 spec/support/define_factory_models.rb