21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-04 16:45:06 +02:00
chexpire/test/factories/check_logs.rb

33 lines
657 B
Ruby
Raw Normal View History

2018-05-30 16:50:41 +02:00
# == Schema Information
#
# Table name: check_logs
#
# id :bigint(8) not null, primary key
# error :text(65535)
# exit_status :integer
# parsed_response :text(65535)
# raw_response :text(65535)
# status :integer
# created_at :datetime not null
# updated_at :datetime not null
# check_id :bigint(8)
#
# Indexes
#
# index_check_logs_on_check_id (check_id)
#
# Foreign Keys
#
# fk_rails_... (check_id => checks.id)
#
2018-06-02 14:45:15 +02:00
FactoryBot.define do
factory :check_log do
check
status :pending
exit_status nil
parsed_response nil
raw_response nil
end
end