blob: e7bc380df3ef7cb3b9b3e7cde814e07c4095930c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# frozen_string_literal: true
# == Schema Information
#
# Table name: post_thumbnails
#
# post_id :bigint not null, primary key
# thumbnail_id :integer not null
#
# Foreign Keys
#
# fk_rails_... (post_id => posts.id)
# fk_rails_... (thumbnail_id => posts.id)
#
require 'test_helper'
class PostThumbnailTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
|