Sha256: 4770875673b2e43c722a3027ef89c5e12dc94378061953ee23544c265734d385
Contents?: true
Size: 856 Bytes
Versions: 2
Compression:
Stored size: 856 Bytes
Contents
require: "../lib/html" FancySpec describe: HTML with: { it: "generates an empty html string when initialized" when: { HTML new to_s is: "" } it: "generates a simple html string" when: { h = HTML new h html: { h head: { h title: "Hello" } h body: { h h1: "Hello, World!" } } html = """ <html> <head> <title> Hello </title> </head> <body> <h1> Hello, World! </h1> </body> </html> """ h to_s is: $ html skip_leading_indentation } it: "indents the generated html by a common offset" when: { h = HTML new: @{ foo: @{ bar: "baz" } } indentation: 3 h to_s lines is: [ " <foo>", " <bar>", " baz", " </bar>", " </foo>" ] } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fancy-0.10.0 | tests/html.fy |
fancy-0.9.0 | tests/html.fy |