spec/templates/helpers/method_helper_spec.rb in yard-0.7.5 vs spec/templates/helpers/method_helper_spec.rb in yard-0.8.0

- old
+ new

@@ -1,11 +1,11 @@ require File.dirname(__FILE__) + "/../spec_helper" describe YARD::Templates::Helpers::MethodHelper do include YARD::Templates::Helpers::BaseHelper include YARD::Templates::Helpers::MethodHelper - + describe '#format_args' do it "should not show &blockarg if no @param tag and has @yield" do YARD.parse_string <<-'eof' # @yield blah def foo(&block); end @@ -18,32 +18,32 @@ # @yieldparam blah test def foo(&block); end eof format_args(Registry.at('#foo')).should == '' end - + it "should show &blockarg if @param block is documented (even with @yield)" do YARD.parse_string <<-'eof' # @yield [a,b] # @yieldparam a test # @param block test def foo(&block) end eof format_args(Registry.at('#foo')).should == '(&block)' end end - + describe '#format_block' do before { YARD::Registry.clear } - + it "should show block for method with yield" do YARD.parse_string <<-'eof' def foo; yield(a, b, c) end eof format_block(Registry.at('#foo')).should == "{|a, b, c| ... }" end - + it "should show block for method with @yieldparam tags" do YARD.parse_string <<-'eof' # @yieldparam _self me! def foo; end eof @@ -53,17 +53,17 @@ it "should show block for method with @yield but no types" do YARD.parse_string <<-'eof' # @yield blah # @yieldparam a def foo; end - + # @yield blah def foo2; end eof format_block(Registry.at('#foo')).should == "{|a| ... }" format_block(Registry.at('#foo2')).should == "{ ... }" end - + it "should show block for method with @yield and types" do YARD.parse_string <<-'eof' # @yield [a, b, c] blah # @yieldparam a def foo; end \ No newline at end of file