17 lines
357 B
Ruby
17 lines
357 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: extensions
|
|
#
|
|
# id :integer not null, primary key
|
|
# confirmed :boolean
|
|
# reason :text
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
require "test_helper"
|
|
|
|
class ExtensionTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|