|
1 | | -# A ColdBox Platform Bundle v1.5 for Sublime text 2 |
| 1 | +# A ColdBox Platform Bundle v1.7 for Sublime text 2 |
2 | 2 |
|
3 | 3 | Get the latest Sublime Text 2 from http://www.sublimetext.com/2. |
4 | 4 |
|
@@ -44,6 +44,32 @@ Code completion for all major ColdBox functions and scopes: |
44 | 44 | - `cachebox-config ➝` : Creates a new CacheBox.cfc configuration file |
45 | 45 | - `routes ➝` : Creates a new routing file |
46 | 46 |
|
| 47 | +### TestBox Snippets |
| 48 | + |
| 49 | +- `bdd ➝` : Creates a new BDD Test Bundle CFC |
| 50 | +- `bddi ➝` : Creates a new BDD Test Bundle CFC via Inheritance |
| 51 | +- `unit ➝` : Creates a new xUnit Test Bundle CFC |
| 52 | +- `uniti ➝` : Creates a new xUnit Test Bundle CFC via Inheritance |
| 53 | +- `describe ➝` : A `describe` suite |
| 54 | +- `describeFull ➝` : A `describe` suite with all arguments |
| 55 | +- `it ➝` : A test spec |
| 56 | +- `itFull ➝` : A test spec with all arguments |
| 57 | +- `expect ➝` : Starts an expectation DSL with a `toBe()` addition |
| 58 | +- `expectFalse ➝` : Does a false expectation expression |
| 59 | +- `expectTrue ➝` : Does a true expectation expression |
| 60 | +- `expectToThrow ➝` : Starts an expectation that throws an exception |
| 61 | +- `afterAll ➝` : An `afterAll()` BDD life-cycle method |
| 62 | +- `beforeAll ➝` : An `beforeAll()` BDD life-cycle method |
| 63 | +- `aftereach ➝` : An `afterEach()` BDD closure |
| 64 | +- `beforeeach ➝` : A `beforeEach()` BDD closure |
| 65 | +- `afterTests ➝` : An `afterTests()` xUnit life-cycle method |
| 66 | +- `beforeTests ➝` : An `beforeTests()` xUnit life-cycle method |
| 67 | +- `teardown ➝` : An `teardown()` xUnit life-cycle method |
| 68 | +- `setup ➝` : An `setup()` xUnit life-cycle method |
| 69 | +- `debug ➝` : Writes up a non-duplicate `debug()` call |
| 70 | +- `debugduplicate ➝` : Writes up a `debug()` call with duplicate |
| 71 | +- `console ➝` : TestBox send some output to the console |
| 72 | + |
47 | 73 | ### Unit-Integration Testing Snippets |
48 | 74 |
|
49 | 75 | - `handlerTest ➝` : Creates a ColdBox Event Handler test case |
@@ -96,6 +122,10 @@ If you have the [Package Control](http://wbond.net/sublime_packages/package_cont |
96 | 122 | - MXUnit Sublime Text bundle - https://github.com/mxunit/sublime-text-2-mxunit |
97 | 123 |
|
98 | 124 | ## Changelog |
| 125 | +### v1.7 |
| 126 | +- TestBox additions |
| 127 | +- Testing additions |
| 128 | + |
99 | 129 | ### v1.5 |
100 | 130 | - Handler snippet fixes |
101 | 131 | - Model skeleton fix |
|
0 commit comments