Sha256: 81775bf6ea27c058071faf5ccabef62847e68d83e07f1b5c7d0e6fd1daaa985a

Contents?: true

Size: 627 Bytes

Versions: 22

Compression:

Stored size: 627 Bytes

Contents

require 'spec/helper'

spec_require 'remarkably/engines/html'
require 'examples/templates/template_remarkably'

describe 'Template Remarkably' do
  behaves_like 'http'
  ramaze

  it '/' do
    get('/').body.strip.should ==
      "<a href=\"/\">Home</a> | <a href=\"/internal\">internal</a> | <a href=\"/external\">external</a>"
  end

  %w[/internal /external].each do |url|
    it url do
      html = get(url).body
      html.should.not == nil
      html.should =~ %r{<title>Template::Remarkably (internal|external)</title>}
      html.should =~ %r{<h1>The (internal|external) Template for Remarkably</h1>}
    end
  end
end

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
Pistos-ramaze-2008.09 spec/examples/templates/template_remarkably.rb
Pistos-ramaze-2008.12 spec/examples/templates/template_remarkably.rb
Pistos-ramaze-2009.01 spec/examples/templates/template_remarkably.rb
Pistos-ramaze-2009.02 spec/examples/templates/template_remarkably.rb
clivecrous-ramaze-0.3.9.5 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2008.07 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2008.08 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2008.09 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2008.10 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2008.12 spec/examples/templates/template_remarkably.rb
manveru-ramaze-2009.01 spec/examples/templates/template_remarkably.rb
ptomato-ramaze-2009.02.1 spec/examples/templates/template_remarkably.rb
ptomato-ramaze-2009.02 spec/examples/templates/template_remarkably.rb
ramaze-0.3.5 spec/examples/templates/template_remarkably.rb
ramaze-0.3.0 spec/examples/templates/template_remarkably.rb
ramaze-2008.06 spec/examples/templates/template_remarkably.rb
ramaze-2008.11 spec/examples/templates/template_remarkably.rb
ramaze-0.3.9 spec/examples/templates/template_remarkably.rb
ramaze-2009.01 spec/examples/templates/template_remarkably.rb
ramaze-0.3.9.1 spec/examples/templates/template_remarkably.rb