X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a7617bc1e8fed5d7da31c9cba6d7075ad5f22493..86f422a8c1a50f4e384b92a89db8916b6e1333ff:/spec/indent/indent_spec.rb diff --git a/spec/indent/indent_spec.rb b/spec/indent/indent_spec.rb index 6f8af74..40269fc 100644 --- a/spec/indent/indent_spec.rb +++ b/spec/indent/indent_spec.rb @@ -68,19 +68,19 @@ describe "vim" do end describe "when using simple control structures" do - it "indents four spaces" do + it "indents shiftwidth spaces" do vim.feedkeys 'iwhile True:\pass' indent.should == shiftwidth end end describe "when a line breaks with a manual '\\'" do - it "indents 4 spaces on normal line" do + it "indents shiftwidth spaces on normal line" do vim.feedkeys 'ivalue = test + \\\\\' indent.should == shiftwidth end - it "indents 8 spaces for control structures" do + it "indents 2x shiftwidth spaces for control structures" do vim.feedkeys 'iif somevalue == xyz and \\\\\' indent.should == shiftwidth * 2 end