Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstjules committed Dec 28, 2014
1 parent 8056ada commit da910e5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### 1.1.0 (2014-12-28)

* toContain/notToContain accepts multiple args
* Added toContainAnyOf
* Added support for custom matchers
* Support phar generation
* Support for pending specs via xdescribe, xcontext, and xit
* Improved watcher, with inotify support
* Support the use of custom reporters
* Added support for a bootstrap file to be loaded before running suites
* Added --no-color option

### 1.0.0 (2013-12-07)

* Initial Stable Release
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ Options

## Writing Specs

Pho exposes 8 functions for organizing and writing your tests: `describe`,
`context`, `it`, `before`, `after`, `beforeEach`, `afterEach` and `expect`.
Pho exposes a DSL for organizing and writing your tests, which includes the
following functions: `describe`, `context`, `it`, `before`, `after`, `beforeEach`,
`afterEach` and `expect`. Equivalent functions for disabling specs and suites
also exist via `xdescribe`, `xcontext` and `xit`.

To create a suite, `describe` and `context` can be used by passing them a
string and function. Both are interchangeable, though context is more often
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Console
{
const VERSION = '1.0.0';
const VERSION = '1.1.0';

const DEFAULT_REPORTER = 'pho\\Reporter\\DotReporter';

Expand Down

0 comments on commit da910e5

Please sign in to comment.