coffeescript-support/README.textile

43 lines
1.6 KiB
Plaintext
Raw Normal View History

2011-01-31 03:13:44 +00:00
h1. Vim Plugin for Jasmine javascript testing
This is my first attempt at a vim plugin bundle. I'm sure there are dragons in here. :-)
h2. Installation
2011-02-01 04:10:25 +00:00
I'm currently using Pathogen and am assuming you are too. That means you should be able to do:
2011-01-31 03:13:44 +00:00
2011-01-31 03:18:26 +00:00
bc. git clone git://github.com/claco/jasmine.vim.git bundle/jasmine
2011-01-31 03:13:44 +00:00
2011-02-01 04:10:25 +00:00
inside of your ~/.vim directory. If you're using submodules to track your bundles:
2011-01-31 03:13:44 +00:00
2011-01-31 03:18:26 +00:00
bc. git submodule add git://github.com/claco/jasmine.vim.git bundle/jasmine
2011-01-31 03:13:44 +00:00
git submodule init
git submodule update
h2. What it does
This plugin is pretty basic right now. It currently:
* Sets Spec.js and SpecHelper.js files to jasmine/javascript fileType
* Applies basic syntax highlighting for jasmine keywords in addition to normal javascript syntax
* Loads snippets for jasmine filetype for:
** desc: description block with before..it..expect
** before: beforeEach block
** after: afterEach block
** it: it...expect block
** helper: beforeEach block and matcher for SpecHelper.js
** matcher: matcher block for SpecHelper.js
2011-02-01 04:10:25 +00:00
** expect: expect..to line
** spy: spyOn method
* Uses templates for new Spec/SpecHelper buffers
You can disable templating by setting g:jasmine_use_templates=""
By default, the plugin assumes the templates are in bundle/jasmine/template and the snippets are in bundle/jasmine/snippets. You can override those by setting g:jasmine_snippets_directory and g:jasmine_templates_directory in your vimrc
2011-01-31 03:13:44 +00:00
h2. TODO
* Add commands/functions to run a spec, a spec file, and jasmine:ci
2011-02-01 04:10:25 +00:00
* Add Red/Green bar to spec runner output and error buffer support
* docs help file