Вопросы по теме 'fabrication-gem'

производитель с атрибутом hstore
Я пытаюсь создать производителя, используя «изготовление», «2.8.1» с атрибутом hstore. Fabricator(:inventory_item_change) do attribute_changes Hash.new("num_units" => "to:50") state "scheduled" change_code 1 execution_at...
346 просмотров

Гем Rails Fabricator с отношением mongoid has_many_and_belongs_to
Я пытаюсь создать класс, который имеет вложенные элементы и имеет отношения HMABT с другим классом. вот мои классы class Quote has_and_belongs_to_many :providers belongs_to :user class Provider has_and_belongs_to_many :quotes...
205 просмотров

Невозможно изготовить много предметов с помощью Fabrication-gem и Mongoid.
Я использую гем Fabrication-gem с DatabaseCleaner и Mongoid ORM в тестах RSpec. Вот мои скрипты: spec/support/database_cleaner.rb RSpec.configure do |config| config.before(:suite) do DatabaseCleaner.strategy = :truncation...
689 просмотров

Остановить FactoryGirl, преобразующую мои строки в числа с плавающей запятой
У меня есть эти фабрики: FactoryGirl.define do factory :product do name { Faker::Commerce.product_name } price { Faker::Commerce.price } image { Faker::Internet.url } end...
373 просмотров