mediawiki-extensions-Echo/tests/browser/features/support/data_manager.rb
Moriel Schottlender 3ea86361a4 Rewrite browser tests for Echo
The new oouified echo popup makes the tests invalid; this commit
rewrites those tests.

Also by doing this commit we are upgrading to Selenium 1.4.

Change-Id: I26215558768d55be449276c55b4b745c3a458ecb
2015-09-25 15:50:59 -07:00

12 lines
196 B
Ruby

# Data manager for Echo tests
class DataManager
def initialize
@data = {}
end
def get(part)
@data[part] = "#{part}_#{Random.srand}" unless @data.key? part
@data[part]
end
end