Sha256: a2a9144741f9508ccd1715012c1aff823fc0755c2aa06569e1bc7302774c3bc8

Contents?: true

Size: 1.83 KB

Versions: 13

Compression:

Stored size: 1.83 KB

Contents

require File.dirname(__FILE__) + '/helper'

begin
require 'erubis'

class ERubisTest < Test::Unit::TestCase
  def erubis_app(&block)
    mock_app {
      set :views, File.dirname(__FILE__) + '/views'
      get '/', &block
    }
    get '/'
  end

  it 'renders inline ERubis strings' do
    erubis_app { erubis '<%= 1 + 1 %>' }
    assert ok?
    assert_equal '2', body
  end

  it 'renders .erubis files in views path' do
    erubis_app { erubis :hello }
    assert ok?
    assert_equal "Hello World\n", body
  end

  it 'takes a :locals option' do
    erubis_app {
      locals = {:foo => 'Bar'}
      erubis '<%= foo %>', :locals => locals
    }
    assert ok?
    assert_equal 'Bar', body
  end

  it "renders with inline layouts" do
    mock_app {
      layout { 'THIS. IS. <%= yield.upcase %>!' }
      get('/') { erubis 'Sparta' }
    }
    get '/'
    assert ok?
    assert_equal 'THIS. IS. SPARTA!', body
  end

  it "renders with file layouts" do
    erubis_app {
      erubis 'Hello World', :layout => :layout2
    }
    assert ok?
    assert_equal "ERubis Layout!\nHello World\n", body
  end

  it "renders erubis with blocks" do
    mock_app {
      def container
        @_out_buf << "THIS."
        yield
        @_out_buf << "SPARTA!"
      end
      def is; "IS." end
      get '/' do
        erubis '<% container do %> <%= is %> <% end %>'
      end
    }
    get '/'
    assert ok?
    assert_equal 'THIS. IS. SPARTA!', body
  end

  it "can be used in a nested fashion for partials and whatnot" do
    mock_app {
      template(:inner) { "<inner><%= 'hi' %></inner>" }
      template(:outer) { "<outer><%= erubis :inner %></outer>" }
      get '/' do
        erubis :outer
      end
    }

    get '/'
    assert ok?
    assert_equal '<outer><inner>hi</inner></outer>', body
  end
end

rescue LoadError
  warn "#{$!.to_s}: skipping erubis tests"
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
sinatra-1.2.9 test/erubis_test.rb
sinatra-1.2.8 test/erubis_test.rb
sinatra-1.2.7 test/erubis_test.rb
sinatra-1.2.6 test/erubis_test.rb
sinatra-1.3.0.c test/erubis_test.rb
sinatra-1.2.3 test/erubis_test.rb
sinatra-1.2.2 test/erubis_test.rb
sinatra-1.3.0.b test/erubis_test.rb
sinatra-1.3.0.a test/erubis_test.rb
sinatra-1.2.1 test/erubis_test.rb
sinatra-1.2.0 test/erubis_test.rb
sinatra-1.2.0.d test/erubis_test.rb
sinatra-1.2.0.c test/erubis_test.rb