Sha256: 542e7dcd85cd5f86346604eaf5a3b7d6af0c67e5158c8b461344f83eb6c931d3
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
=== Version 0.1.3 / 2010-04-06 * fixed a bug where inner table was not shown with Watir::Table#to_a when it was not a direct child, but some other element was in between for example form, span, div etc. === Version 0.1.2 / 2010-04-05 * Added match_array matcher for RSpec for using with Array when regular expressions are needed. It is useful when verifying html tables with #to_a method. expected_array = ["1", "2", /\d+/, "3"] ["1", "2", "66", "3"].should match_array(expected_array) table(:id => "table_id").to_a.should match_array(expected_array) === Version 0.1.1 / 2010-04-04 * Watir::Table#to_a and Watir::TableRow#to_a work now well with tr, th, td elements, colspan and nested tables. This means that you can test easily tables now: expected_table = [["one", "two"], ["three", "four"]] table(:id => "table_id").to_a.should =~ expected_table * removed strict version requirements for dependencies === Version 0.1.0 / 2010-04-03 First release of WatiRspec, a small library for combining Watir and RSpec for browser-based functional testing in Ruby.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watirspec-0.1.3 | History.rdoc |