diff options
-rw-r--r-- | test/ChangeLog | 2 | ||||
-rw-r--r-- | test/indent/ruby.rb | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 6572b9c46e4..9db787cc3ac 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,5 +1,7 @@ 2013-10-26 Dmitry Gutov <dgutov@yandex.ru> + * indent/ruby.rb: New failing example. + * automated/ruby-mode-tests.el (ruby-toggle-block-to-brace): Fix the test, in respect to adding the space after the curly. diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 9532a4b4245..b4173b69bc1 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -229,3 +229,7 @@ end bar.foo do # "." is parent to "do"; it shouldn't be. bar end + +foo :bar do + qux +end |