forked from jasmine/jasmine
-
Notifications
You must be signed in to change notification settings - Fork 3
Home
BrianGenisio edited this page Apr 5, 2011
·
31 revisions
BDD for your ActionScript -- a port of jasmine from JavaScript
Jasmine is a behavior-driven development framework for testing your ActionScript code. It does not depend on any other ActionScript frameworks. It has a clean, obvious syntax so that you can easily write tests. See this blog post announcing Jasmine-Flex.
describe("Jasmine", function() {
it("makes testing ActionScript awesome!", function() {
expect(yourCode).toBeLotsBetter();
});
});
There is some great documentation on the Jasmine site that doesn't change at all for jasmine-flex:
- Suites and specs
- Matchers
- Before and After
- Spies (Does not work with named functions. See why)
- Asynchronous Specs
- Related Projects
- Who's Using Jasmine
What's Here:
- Download
- Release Notes
- Why Another Flex Based Testing Framework?
- How to use Jasmine with:
- API Documentation
- Integrations
Discussion: Google Group
Group email: [email protected]
Report jasmine-flex bugs at GitHub
Twitter: @JasmineBDD