]> git.madduck.net Git - etc/vim.git/commitdiff

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:

tests: remove nil from hang-closing tests (#105)
authorDaniel Hahler <github@thequod.de>
Tue, 17 Jul 2018 22:37:40 +0000 (00:37 +0200)
committerGitHub <noreply@github.com>
Tue, 17 Jul 2018 22:37:40 +0000 (00:37 +0200)
There is not much value in running all tests with it to see that the
default is used.

spec/indent/indent_spec.rb
spec/spec_helper.rb

index 79d7f8474ec307a616eda8e6053297642170b15f..871101c131811ef5ad33621e81905d6737fd47d7 100644 (file)
@@ -515,7 +515,7 @@ shared_examples_for "multiline strings" do
 end
 
 SUITE_SHIFTWIDTHS = [4, 3]
-SUITE_HANG_CLOSINGS = [nil, false, true]
+SUITE_HANG_CLOSINGS = [false, true]
 
 SUITE_SHIFTWIDTHS.each do |sw|
   describe "vim when using width of #{sw}" do
index 4cd2b56b62651c075b9cee6ba111a816ea9813d1..221e6ed836360adeebd3a69717e45c24b19ac038 100644 (file)
@@ -52,12 +52,8 @@ Vimrunner::RSpec.configure do |config|
       return (i != 0)
     end
     def set_hang_closing(value)
-      if value.nil?
-        vim.command("unlet! g:python_pep8_indent_hang_closing")
-      else
-        i = value ? 1 : 0
-        vim.command("let g:python_pep8_indent_hang_closing=#{i}")
-      end
+      i = value ? 1 : 0
+      vim.command("let g:python_pep8_indent_hang_closing=#{i}")
     end
 
     vim