28 lines
696 B
Ruby
28 lines
696 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: questions
|
|
#
|
|
# id :integer not null, primary key
|
|
# answer_kind :integer not null
|
|
# public_asset_path :string
|
|
# question_kind :integer default("simple"), not null
|
|
# text :text not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# section_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_questions_on_section_id (section_id)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# section_id (section_id => sections.id)
|
|
#
|
|
require "test_helper"
|
|
|
|
class QuestionTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|