Sha256: e004d72b848b0c59b5a63fd5cfddff91eb1f4bac9c5b4ef05111f138bb383473
Contents?: true
Size: 646 Bytes
Versions: 3
Compression:
Stored size: 646 Bytes
Contents
describe "Collection blocks", type: :request do example "Rendering collections" do get '/collection' response.body.should == <<-HTML.strip_heredoc <html> <head> <title>Dummy app</title> </head> <body> <header> <h1>Dummy app</h1> </header> <ul> <li>uno</li> <ul> <li>1</li><li>2</li><li>3</li> </ul> <li>dos</li> <ul> <li>1</li><li>2</li><li>3</li> </ul> <li>tres!</li> <ul> <li>1</li><li>2</li><li>3</li> </ul> </ul> </body> </html> HTML end end
Version data entries
3 entries across 3 versions & 1 rubygems