2011-05-07 20:50:39 +02:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class PageTest < ActiveSupport::TestCase
|
|
|
|
# Replace this with your real tests.
|
|
|
|
test "the truth" do
|
|
|
|
assert true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-07 21:55:24 +02:00
|
|
|
|
2009-06-11 17:59:21 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: pages
|
|
|
|
#
|
2011-05-07 21:55:24 +02:00
|
|
|
# id :integer(4) not null, primary key
|
2009-06-11 17:59:21 +02:00
|
|
|
# title :string(255)
|
|
|
|
# body :text
|
|
|
|
# permalink :string(255)
|
2011-05-07 21:55:24 +02:00
|
|
|
# lock_version :integer(4) default(0)
|
|
|
|
# updated_by :integer(4)
|
|
|
|
# redirect :integer(4)
|
|
|
|
# parent_id :integer(4)
|
2009-06-11 17:59:21 +02:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|