class FakeKlass
Public Class Methods
arel_attribute(name, table)
click to toggle source
# File activerecord/test/models/post.rb, line 318 def arel_attribute(name, table) table[name] end
attribute_alias?(name)
click to toggle source
# File activerecord/test/models/post.rb, line 306 def attribute_alias?(name) false end
connection()
click to toggle source
# File activerecord/test/models/post.rb, line 298 def connection Post.connection end
sanitize_sql(sql)
click to toggle source
# File activerecord/test/models/post.rb, line 310 def sanitize_sql(sql) sql end
sanitize_sql_for_order(sql)
click to toggle source
# File activerecord/test/models/post.rb, line 314 def sanitize_sql_for_order(sql) sql end
table_name()
click to toggle source
# File activerecord/test/models/post.rb, line 302 def table_name "posts" end