require_relative 'helper' # Please keep in mind that any hash signs ("#") in the heredoc strings are # placed on purpose. Without these editors might remove the whitespace on empty # lines. describe Pry::Indent do before do @indent = Pry::Indent.new end it 'should indent an array' do input = "array = [\n10,\n15\n]" output = "array = [\n 10,\n 15\n]" @indent.indent(input).should eq output end it 'should indent a hash' do input = "hash = {\n:name => 'Ruby'\n}" output = "hash = {\n :name => 'Ruby'\n}" @indent.indent(input).should eq output end it 'should indent a function' do input = "def\nreturn 10\nend" output = "def\n return 10\nend" @indent.indent(input).should eq output end it 'should indent a module and class' do input = "module Foo\n# Hello world\nend" output = "module Foo\n # Hello world\nend" input_class = "class Foo\n# Hello world\nend" output_class = "class Foo\n # Hello world\nend" @indent.indent(input).should eq output @indent.indent(input_class).should eq output_class end it 'should indent separate lines' do @indent.indent('def foo').should eq 'def foo' @indent.indent('return 10').should eq ' return 10' @indent.indent('end').should eq 'end' end it 'should not indent single line statements' do input = < do" do input = "while 5 do\n5\nend" @indent.indent(input).should eq "while 5 do\n 5\nend" end it "should ident case statements" do input = <\n[]}]\n]").should eq "[[{\n [] =>\n []}]\n]" end it "should not indent single-line ifs" do @indent.indent("foo if bar\n#").should eq "foo if bar\n#" @indent.reset.indent("foo() if bar\n#").should eq "foo() if bar\n#" @indent.reset.indent("foo 'hi' if bar\n#").should eq "foo 'hi' if bar\n#" @indent.reset.indent("foo 1 while bar\n#").should eq "foo 1 while bar\n#" @indent.reset.indent("$foo if false\n#").should eq "$foo if false\n#" @indent.reset.indent("@foo if false\n#").should eq "@foo if false\n#" @indent.reset.indent("@@foo if false\n#").should eq "@@foo if false\n#" @indent.reset.indent("super if true\n#").should eq "super if true\n#" @indent.reset.indent("true if false\n#").should eq "true if false\n#" @indent.reset.indent("String if false\n#").should eq "String if false\n#" end it "should indent cunningly disguised ifs" do @indent.indent("{1 => if bar\n#").should eq "{1 => if bar\n #" @indent.reset.indent("foo(if bar\n#").should eq "foo(if bar\n #" @indent.reset.indent("bar(baz, if bar\n#").should eq "bar(baz, if bar\n #" @indent.reset.indent("[if bar\n#").should eq "[if bar\n #" @indent.reset.indent("true; while bar\n#").should eq "true; while bar\n #" end it "should differentiate single/multi-line unless" do @indent.indent("foo unless bar\nunless foo\nbar\nend").should eq "foo unless bar\nunless foo\n bar\nend" end it "should not indent single/multi-line until" do @indent.indent("%w{baz} until bar\nuntil foo\nbar\nend").should eq "%w{baz} until bar\nuntil foo\n bar\nend" end it "should indent begin rescue end" do input = < :wrong rescue => e doit :right end INPUT output = < :wrong rescue => e doit :right end OUTPUT @indent.indent(input).should eq output end it "should not indent inside strings" do @indent.indent(%(def a\n"foo\nbar"\n end)).should eq %(def a\n "foo\nbar"\nend) @indent.indent(%(def a\nputs %w(foo\nbar), 'foo\nbar'\n end)).should eq %(def a\n puts %w(foo\nbar), 'foo\nbar'\nend) end it "should not indent inside HEREDOCs" do @indent.indent(%(def a\nputs <