Hello!
I’ve just added a new cool matcher #in into my framework WatirSplash
and thought that this could be integrated into RSpec directly actually
if there’s any interest.
WatirSplash uses Watir (or Watir-like) frameworks for testing web
pages via browser. If you’re not familiar with it then here is a short
example how you had to test ajax-heavy application before:
browser.link(:id => “someid”).click
let’s wait up to 5 seconds for div to become visible
browser.wait_until(5) {browser.div(:id => “otherid”).visible?}
It was quite cumbersome and i thought about adding and #in matcher to
all matchers so i can do something like this instead:
clicking the link changed div’s text from “before” to “after” in a
maximum of 2 seconds
expect {
link.click
}.to change {div.text}.from(“before”).to(“after”).in(2)
clicking link makes div as present in a maximum of 2 seconds
link.click
div.should be_present.in(2)
clicking link makes div as visible in a maximum of 2 seconds
expect {
link.click
}.to make {div.visible?}.in(2)
use ActiveSupport for adding more meaning to numbers
require “active_support”
div.should exist.in(2.minutes)
What do you guys think? Should i add that also into rspec-expectations
to make spec-ing easier where timing is involved?
Jarmo P.