mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-09 02:16:43 +01:00
19 lines
416 B
Ruby
19 lines
416 B
Ruby
|
# frozen_string_literal: true
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: blogs
|
||
|
#
|
||
|
# id :bigint not null, primary key
|
||
|
# body :text not null
|
||
|
# title :text not null
|
||
|
# created_at :datetime not null
|
||
|
# updated_at :datetime not null
|
||
|
#
|
||
|
require "test_helper"
|
||
|
|
||
|
class BlogTest < ActiveSupport::TestCase
|
||
|
# test "the truth" do
|
||
|
# assert true
|
||
|
# end
|
||
|
end
|