]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/vim-python-pep8-indent/spec/indent/cython_spec.rb

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/vim-python-pep8-indent/' from commit '60ba5e11a61618c0344e2db1902101...
[etc/vim.git] / .vim / bundle / vim-python-pep8-indent / spec / indent / cython_spec.rb
1 require "spec_helper"
2
3 describe "vim for cython" do
4   before(:all) {
5     vim.command "new"
6     vim.command "set ft=cython"
7     vim.command("set indentexpr?").should include "GetPythonPEPIndent("
8   }
9   before(:each) {
10     # clear buffer
11     vim.normal 'gg"_dG'
12
13     # Insert two blank lines.
14     # The first line is a corner case in this plugin that would shadow the
15     # correct behaviour of other tests. Thus we explicitly jump to the first
16     # line when we require so.
17     vim.feedkeys 'i\<CR>\<CR>\<ESC>'
18   }
19   after(:all) {
20     vim.command "bwipe!"
21   }
22
23   describe "when using a cdef function definition" do
24       it "indents shiftwidth spaces" do
25           vim.feedkeys 'icdef long_function_name(\<CR>arg'
26           indent.should == shiftwidth
27       end
28   end
29
30   describe "when using a cpdef function definition" do
31       it "indents shiftwidth spaces" do
32           vim.feedkeys 'icpdef long_function_name(\<CR>arg'
33           indent.should == shiftwidth
34       end
35   end
36 end