You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/spec/doubles/result.rb

20 lines
416 B

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