Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyarnold committed Mar 10, 2014
2 parents 8cce1e5 + 3545a3e commit 10b6439
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -112,9 +112,9 @@ Expecta is framework-agnostic. It works well with OCUnit (SenTestingKit) and OCU
>
>`expect(x).to.respondTo(y);` passes if `x` responds to the selector `y`.
>
>`expect( /* code */ ).to.notify(@"NotificationName");` passes if a given block of code generates an NSNotification named `NotificationName`.
>`expect(^{ /* code */ }).to.notify(@"NotificationName");` passes if a given block of code generates an NSNotification named `NotificationName`.
>
>`expect( /* code */ ).to.notify(notification);` passes if a given block of code generates an NSNotification equal to the passed `notification`.
>`expect(^{ /* code */ }).to.notify(notification);` passes if a given block of code generates an NSNotification equal to the passed `notification`.
>
>`expect(x).to.beginWith(y);` passes if an instance of NSString, NSArray, or NSOrderedSet `x` begins with `y`. Also aliased by `startWith`
>
Expand Down

0 comments on commit 10b6439

Please sign in to comment.