17 lines
350 B
Ruby
17 lines
350 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: guests
|
|
#
|
|
# id :bigint not null, primary key
|
|
# name :string
|
|
# username :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
require "test_helper"
|
|
|
|
class GuestTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|