Sha256: 2db7b9bbd9616587f86a148e72b6660f45a6dd419bf195152feea746557520ef

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

=== Version 0.1.7 / 2010-04-15

 * minor fix

=== Version 0.1.6 / 2010-04-08

 * browser was not closed when Watir::IE#run_error_checks throwed an exception

=== Version 0.1.5 / 2010-04-08

 * fixed a problem where HtmlFormatter threw an ugly exception due to the problem when browser was not opened

=== Version 0.1.4 / 2010-04-06

 * added dependency for win32screenshot

=== 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.7 History.rdoc