Skip to Content
Rails 5 Test Prescriptions
book

Rails 5 Test Prescriptions

by Noel Rappin
February 2018
Intermediate to advanced
406 pages
9h 52m
English
Pragmatic Bookshelf
Content preview from Rails 5 Test Prescriptions

Jasmine Matchers

So far you’ve only seen toEqual as a core Jasmine matcher, but Jasmine defines quite a few. Here are the built-in matchers.

Matcher

Passes if

toBe(actual)

expected === actual (JavaScript triple equal).

toBeCloseTo(actual, precision)

The floating-point value of actual is within precision amount of the expected value.

toBeGreaterThan(actual)

expected > actual.

toBeFalsy()

The expected value is a JavaScript falsy value.

toBeLessThan(actual)

expected < actual.

toBeNull()

The expected value is null.

toBeTruthy()

The expected value is a JavaScript truthy value.

toBeUndefined()

The expected value is undefined; no actual argument needed.

toContain(actual)

expected is an array that contains the actual value.

toEqual(actual)

expected and actual are equal values. ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Rails 4 Test Prescriptions

Rails 4 Test Prescriptions

Noel Rappin
What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz
Agile Web Development with Rails 5.1

Agile Web Development with Rails 5.1

Sam Ruby, David B. Copeland, Dave Thomas

Publisher Resources

ISBN: 9781680505566Errata Page