Files
ProMotion/spec/helpers/table_screen_refreshable.rb
2013-05-27 16:43:08 -07:00

11 lines
178 B
Ruby

class TableScreenRefreshable < TestTableScreen
attr_accessor :on_refresh_called
refreshable
def on_refresh
self.on_refresh_called = true
end_refreshing
end
end