gpiancastelli / fit

A Ruby port of FIT (Framework for Interactive Testing).

This URL has Read+Write access

fit / CHANGELOG
100644 28 lines (24 sloc) 1.311 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1.2
 
  * Support Ruby 1.9.
  * Explicitly force Dir.glob order to avoid inconsistencies on Ruby 1.8.7.
  * Compliance with Fit 1.2 specification (both mandatory and recommended):
    * support numeric entities in HTML files;
    * provide an --encoding option on the command line to set the character
      encoding used for reading input and writing output files;
    * provide --version and --help command line options.
  * Support character encoding also from within Rake::FitTask.
  * Better error messages on the command line when input/output files are not
    found/given.
  * Speed up the process of loading fixtures in Fit::FixtureLoader.
  * Report every exception within Fitnesse. (RubyForge patch #5100)
  * Multiple fixtures executed on the same HTML file now use a single loader.
    (RubyForge bug #14379)
  * Distribution now includes examples from the Fit book.
  * Better integer parsing in Fit::GenericAdapter. (RubyForge bug #25897)
  * Better float parsing in Fit::GenericAdapter. (RubyForge bug #25640)
  * Load class AFixture even when class A exists.
  * Avoid extra whitespace when converting HTML table header text to Ruby
    method names. (RubyForge bug #22283)
  * Use the canonical string representation for arrays.
 
1.1
 
  * Initial release, compliant with Fit 1.1 specification.