2009-06-11 17:59:21 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: pages
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# title :string(255)
|
|
|
|
# body :text
|
|
|
|
# permalink :string(255)
|
|
|
|
# lock_version :integer default(0)
|
|
|
|
# updated_by :integer
|
2009-08-15 17:24:08 +02:00
|
|
|
# redirect :integer
|
2009-06-11 17:59:21 +02:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
2009-03-25 19:54:04 +01:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class PageTest < ActiveSupport::TestCase
|
|
|
|
# Replace this with your real tests.
|
|
|
|
test "the truth" do
|
|
|
|
assert true
|
|
|
|
end
|
|
|
|
end
|