- version 3.6
Check those constraints:
$this->anything()
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"/> | |
| <script src="http://cmx.io/v/0.1/cmx.js"></script> | |
| <body> | |
| <scene id="scene1"> | |
| <label t="translate(0,346)"> | |
| <tspan x="0" y="0em">One lazy morning</tspan> | |
| </label> | |
| <drawing t="translate(0,31)"> |
| gem 'pg' | |
| group :development do | |
| gem 'ruby-debug' | |
| end | |
| gem 'rake', '~> 0.8.7' | |
| gem 'devise' | |
| gem 'oa-oauth', :require => 'omniauth/oauth' | |
| gem 'omniauth' | |
| gem 'haml' | |
| gem 'dynamic_form' |
| // Loads fixure markup into the DOM as a child of the jasmine_content div | |
| spec.loadFixture = function(fixtureName) { | |
| var $destination = $('#jasmine_content'); | |
| // get the markup, inject it into the dom | |
| $destination.html(spec.fixtureHtml(fixtureName)); | |
| // keep track of fixture count to fail specs that | |
| // call loadFixture() more than once | |
| spec.loadFixtureCount++; |