]> git.madduck.net Git - etc/vim.git/blob - 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:

6a85790309d572fb502c322a008e066183abd0e5
[etc/vim.git] / 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     # Insert two blank lines.
11     # The first line is a corner case in this plugin that would shadow the
12     # correct behaviour of other tests. Thus we explicitly jump to the first
13     # line when we require so.
14     vim.feedkeys 'i\<CR>\<CR>\<ESC>'
15   }
16   after(:all) {
17     vim.command "bwipe!"
18   }
19
20   describe "when using a cdef function definition" do
21       it "indents shiftwidth spaces" do
22           vim.feedkeys 'icdef long_function_name(\<CR>arg'
23           indent.should == shiftwidth * 2
24       end
25   end
26
27   describe "when using a cpdef function definition" do
28       it "indents shiftwidth spaces" do
29           vim.feedkeys 'icpdef long_function_name(\<CR>arg'
30           indent.should == shiftwidth * 2
31       end
32   end
33 end