21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-07 02:58:39 +02:00
chexpire/test/models/check_log_test.rb
2018-08-02 00:29:53 +02:00

34 lines
765 B
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
# == 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)
#
require "test_helper"
class CheckLogTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end