Sha256: 75e5be0b6e0af88aeffe64c6b05db47c940f4d54fda540b28db031776bf02024

Contents?: true

Size: 1.79 KB

Versions: 7

Compression:

Stored size: 1.79 KB

Contents

require "spec_helper"

module HtmlReportHelperSpec
  # Is there an idiom for this?
  def self.included(base)
    base.before do
      @reporter = Object.new
      @reporter.extend Relevance::Tarantula::HtmlReportHelper
    end                                                                   
  end 
end

describe 'Relevance::Tarantula::HtmlReportHelper#wrap_in_line_number_table' do
  include HtmlReportHelperSpec
  it "can wrap text in a table row used for displaying lines and line numbers" do
    html = @reporter.wrap_in_line_number_table_row("Line 1\nLine 2")
    html.should == <<-END.strip
<tr><td class=\"numbers\"><span class=\"line number\">1</span><span class=\"line number\">2</span></td><td class=\"lines\"><span class=\"line\">Line 1</span><span class=\"line\">Line 2</span></td></tr>
END
  end  
end

describe 'Relevance::Tarantula::HtmlReportHelper#wrap_stack_trace_line' do
  include HtmlReportHelperSpec
  it "can wrap stack trace line in links" do                       
    line = %{/action_controller/filters.rb:697:in `call_filters'}
    @reporter.stubs(:textmate_url).returns("ide_url")
    html = @reporter.wrap_stack_trace_line(line)
    html.should include "<a href='ide_url'>/action_controller/filters.rb:697</a>:in `call_filters"
  end  
  
  it "converts html entities for non-stack trace lines" do
    line = %{<a href="foo">escape me</a>}
    html = @reporter.wrap_stack_trace_line(line)
    html.should == %{&lt;a href=&quot;foo&quot;&gt;escape me&lt;/a&gt;}
  end

end

describe 'Relevance::Tarantula::HtmlReportHelper IDE help' do
  include HtmlReportHelperSpec
  it "can create a textmate url" do
    @reporter.stubs(:rails_root).returns("STUB_RAILS_ROOT")
    @reporter.textmate_url("/etc/somewhere", 100).should =~ %r{txmt://open\?url=.*/STUB_RAILS_ROOT/etc/somewhere&line_no=100}
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
codez-tarantula-0.5.5 spec/relevance/tarantula/html_report_helper_spec.rb
codez-tarantula-0.5.4 spec/relevance/tarantula/html_report_helper_spec.rb
codez-tarantula-0.5.3 spec/relevance/tarantula/html_report_helper_spec.rb
codez-tarantula-0.5.1 spec/relevance/tarantula/html_report_helper_spec.rb
codez-tarantula-0.5.0 spec/relevance/tarantula/html_report_helper_spec.rb
tarantula-0.5.1 spec/relevance/tarantula/html_report_helper_spec.rb
tarantula-0.5.0 spec/relevance/tarantula/html_report_helper_spec.rb