wblog/spec/models/post_spec.rb

8 lines
143 B
Ruby

require 'rails_helper'
RSpec.describe Post, type: :model do
it "validates should be ok" do
expect(create(:post)).to be_truthy
end
end