This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/test/unit/page_test.rb

14 lines
246 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class PageTest < Test::Unit::TestCase
fixtures :pages
def test_create
assert_create('Page', :title => 'my test page')
end
def test_destroy
assert_destroy('Page')
end
end