Confirmed users
3,816
edits
No edit summary |
|||
| Line 103: | Line 103: | ||
git branch -d myfeature // Deletes the branch | git branch -d myfeature // Deletes the branch | ||
</pre> | </pre> | ||
= Writing a Test = | |||
This is about writing tests for the Mozmill tool itself, not writing Mozmill tests. For writing Mozmill tests, please refer to the [https://developer.mozilla.org/en/Mozmill Mozilla Developer Network pages]. | |||
A test framework for the Mozmill tool itself is being constructed. For now, do the best you can by writing a simple piece of JavaScript or Python to test the feature you're adding. You can also write a Mozmill test to test itself for this as well. Add your test to the mozmill/test directory. | |||
We'll update here once we have something more complete. | |||