17 lines
397 B
Ruby
17 lines
397 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: sections
|
|
#
|
|
# id :integer not null, primary key
|
|
# description :text not null
|
|
# title :text not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
require "test_helper"
|
|
|
|
class SectionTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|