cartodb-4.42/spec/doubles/result.rb
2024-04-06 05:25:13 +00:00

20 lines
416 B
Ruby

module CartoDB
module Doubles
module Importer2
class Result
def initialize(attributes={})
self.table_name = attributes[:table_name]
self.name = attributes[:name]
self.support_tables = []
end
attr_accessor :support_tables, :table_name, :name
def update_support_tables(new_list)
end
end
end
end
end