author | mahlon |
Mon, 01 Jun 2009 14:33:54 +0000 | |
branch | vim-stuff |
changeset 9 | 0d8306685c5c |
parent 5 | 3346aa8d5364 |
child 12 | a9f1ce3766d1 |
permissions | -rw-r--r-- |
5 | 1 |
" |
2 |
" specky: syntax highlighting for rspec files. |
|
3 |
" $Id$ |
|
4 |
" |
|
5 |
||
6 |
runtime! syntax/ruby.vim |
|
7 |
unlet b:current_syntax |
|
8 |
||
9 |
syntax keyword rspecGroupMethods describe it |
|
10 |
highlight link rspecGroupMethods Type |
|
11 |
||
12 |
syntax keyword rspecBeforeAndAfter after after_suite_parts append_after append_before before before_suite_parts prepend_after prepend_before |
|
13 |
highlight link rspecBeforeAndAfter Statement |
|
14 |
||
15 |
syntax keyword rspecMocks mock stub |
|
16 |
highlight link rspecMocks Constant |
|
17 |
||
18 |
syntax keyword rspecMockMethods and_raise and_return and_throw and_yield build_child called_max_times expected_args invoke matches |
|
19 |
highlight link rspecMockMethods Function |
|
20 |
||
21 |
syntax keyword rspecKeywords should should_not should_not_receive should_receive |
|
22 |
highlight link rspecKeywords Constant |
|
23 |
||
9
0d8306685c5c
Add support for 1.2.6 to, to_not, and expect keywords.
mahlon
parents:
5
diff
changeset
|
24 |
syntax keyword rspecMatchers be_a be_a_kind_of be_an be_an_instance_of be_close be_false be_instance_of be_kind_of be_nil be_true change eql equal exist expect have have_at_least have_at_most have_exactly include match matcher raise_error respond_to satisfy throw_symbol to to_not wrap_expectation |
5 | 25 |
highlight link rspecMatchers Function |
26 |
||
27 |
syntax keyword rspecMessageExpectation advise any_number_of_times at_least at_most exactly expected_messages_received generate_error ignoring_args matches_at_least_count matches_at_most_count matches_exact_count matches_name_but_not_args negative_expectation_for never once ordered similar_messages times twice verify_messages_received with |
|
28 |
highlight link rspecMessageExpectation Function |
|
29 |
||
30 |
let b:current_syntax = "rspec" |