Sha256: c416797f7621a0c779224b9ba04a7dbe2e88b367f3d8a9475f83025d59dc4080
Contents?: true
Size: 274 Bytes
Versions: 1
Compression:
Stored size: 274 Bytes
Contents
require 'test_helper' class PublishedPostTest < ActiveSupport::TestCase def setup @post = create_post end test "should start published" do assert @post.published? assert !@post.unpublished? end def create_post PublishedPost.create end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aguids-publishable-0.1.0 | test/rails_root/test/unit/published_post_test.rb |