class ActiveRecord::ConnectionAdapters::FakeResult

Public Instance Methods

clear() click to toggle source
# File lib/tasks/db_mock.rb, line 15
def clear
  return nil
end
fields() click to toggle source
# File lib/tasks/db_mock.rb, line 6
def fields
  return []
end
first() click to toggle source
# File lib/tasks/db_mock.rb, line 12
def first
  return {}
end
values() click to toggle source
# File lib/tasks/db_mock.rb, line 9
def values
  return []
end