Sha256: 7248ac319e864ab703202d165eb7948b9d2804fd0831faa5bad91f59858cf277

Contents?: true

Size: 1.95 KB

Versions: 14

Compression:

Stored size: 1.95 KB

Contents

#          Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

require File.expand_path('../../../../spec/helper', __FILE__)
spec_require 'ramaze/gestalt'

Ramaze::App.options.views = 'gestalt'

class SpecGestalt < Ramaze::Controller
  map '/'
  engine :Gestalt
  helper :gestalt

  def index
    @title = 'Gestalt Index'
    g
  end

  def links
    g
  end

  def with_partial
    g
  end

  def different_module
    g(:foo, SpecGestalDifferentModule)
  end
end

module SpecGestaltView
  def index
    h1 @title
  end

  def links
    ul do
      li{ a "Index page",        :href => rs(:index)    }
      li{ a "Internal template", :href => rs(:internal) }
      li{ a "External template", :href => rs(:external) }
    end
  end

  # def external
  #   ol do
  #     3.times{ render_view('template') }
  #   end
  # end

  def with_partial
    ul do
      3.times{ _partial }
    end
  end

  def _partial
    li 'List Item'
  end
end

module SpecGestalDifferentModule
  def foo
    p{ 'view module specified'}
  end
end

describe Ramaze::View::Gestalt do
  behaves_like :rack_test

  should 'use g helper' do
     get('/').body.should == '<h1>Gestalt Index</h1>'
   end

  should 'use other helper methods' do
    get('/links').body.should ==
      '<ul><li><a href="/index">Index page</a></li><li><a href="/internal">Internal template</a></li><li><a href="/external">External template</a></li></ul>'
  end

  should 'render external template' do
     get('/external').body.should ==
      "<html><head><title>Gestalt Test</title></head><body><h1>Gestalt Template</h1></body></html>"
  end

  should 'use method like partials' do
    get('/with_partial').body.should ==
      '<ul><li>List Item</li><li>List Item</li><li>List Item</li></ul>'
  end

  should 'be able to specify different view module and method' do
    get('/different_module').body.should ==
      '<p>view module specified</p>'
  end
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
Pistos-ramaze-2009.06.12 spec/ramaze/view/gestalt.rb
manveru-ramaze-2009.07 spec/ramaze/view/gestalt.rb
ramaze-2011.12.28 spec/ramaze/view/gestalt.rb
ramaze-2011.10.23 spec/ramaze/view/gestalt.rb
ramaze-2011.07.25 spec/ramaze/view/gestalt.rb
ramaze-2011.01.30 spec/ramaze/view/gestalt.rb
ramaze-2011.01 spec/ramaze/view/gestalt.rb
ramaze-2010.06.18 spec/ramaze/view/gestalt.rb
ramaze-2010.04.04 spec/ramaze/view/gestalt.rb
ramaze-2010.04 spec/ramaze/view/gestalt.rb
ramaze-2010.03 spec/ramaze/view/gestalt.rb
ramaze-2010.01 spec/ramaze/view/gestalt.rb
ramaze-2009.10 spec/ramaze/view/gestalt.rb
ramaze-2009.07 spec/ramaze/view/gestalt.rb