Skip to content

Commit

Permalink
Avoid wrapping in example
Browse files Browse the repository at this point in the history
  • Loading branch information
sunesimonsen committed Dec 16, 2013
1 parent 4ba69fa commit 3728636
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ReadMe.md
Expand Up @@ -212,7 +212,10 @@ expect(Object.create({a: 'b'}), 'not to have own property', 'a');
expect({ a: 'a', b: { c: 'c' }, d: 'd' }, 'to have properties', ['a', 'b']);
expect({ a: 'a', b: { c: 'c' }, d: 'd' }, 'to have own properties', ['a', 'b']);
expect({ a: 'a', b: { c: 'c' }, d: 'd' }, 'to not have properties', ['k', 'l']);
expect({ a: 'a', b: { c: 'c' }, d: 'd' }, 'to have properties', { a: 'a', b: { c: 'c' } });
expect({ a: 'a', b: { c: 'c' }, d: 'd' }, 'to have properties', {
a: 'a',
b: { c: 'c' }
});
```

**key** / **keys**: asserts the presence of a key. Supports the `only` modifier
Expand Down

0 comments on commit 3728636

Please sign in to comment.