Jasmine cheat sheet - Matcher toMatch

by softvar

HTML

<link href="http://blog.bandzarewicz.com/stylesheets/jasmine/jasmine.css" media="screen, projection" rel="stylesheet" type="text/css">
<script src="http://blog.bandzarewicz.com/javascripts/jasmine/runner.js"></script>
<script src="http://blog.bandzarewicz.com/javascripts/jasmine/jasmine.js"></script>
<script src="http://blog.bandzarewicz.com/javascripts/jasmine/jasmine-html.js"></script>

JavaScript

describe('toMatch', function() {
    it('compares the actual to the expected using a regular expression', function() {
        expect('Hello Jasmine').toMatch(/jasmine/i);
        expect('phone: 123-45-67').toMatch(/\d{3}-\d{2}-\d{2}/);
    });
});

execJasmine();