2016-08-07 00:44:11 +08:00
|
|
|
require 'rails_helper'
|
2012-06-23 06:19:03 +08:00
|
|
|
|
2016-08-07 00:44:11 +08:00
|
|
|
RSpec.describe Post, type: :model do
|
2012-06-23 12:07:24 +08:00
|
|
|
it "validates should be ok" do
|
2014-07-21 14:51:21 +08:00
|
|
|
expect(create(:post)).to be_truthy
|
2012-06-23 12:07:24 +08:00
|
|
|
end
|
2012-06-23 06:19:03 +08:00
|
|
|
end
|