Files
ProMotion/spec/helpers/table_screen_refreshable.rb
Jamon Holmgren 9e4ea34cab Updated table screen specs
More work is needed on these.
2013-05-06 23:16:04 -07:00

11 lines
174 B
Ruby

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