cartodb-4.29/spec/doubles/result.rb
2020-06-15 10:58:47 +08: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