Sha256: f0d4bec8ff876fab056018947a35939c888ff78b04ed1bd44b7dbda713c7f2f4

Contents?: true

Size: 1.06 KB

Versions: 8

Compression:

Stored size: 1.06 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 'spec/helper'

class BaseController < Ramaze::Controller
  alias_view :foo, :bar
  alias_view :one, :another, self

  def test() 'test' end
end

class MainController < BaseController
end

describe 'Controller' do
  behaves_like :rack_test

  it 'allows sub-classing MainController' do
    get('/test').body.should == 'test'
  end

  it 'respects view aliase from superclass, with no explicit controller' do
    # The template file it should use is view/bar.xhtml, as the template
    # mapping doesn't specify a controller, so it will be implicitly relative
    # to MainController.
    get('/foo').body.should == 'bar'
  end

  it 'respects view aliase from superclass, with an explicit controller' do
    # Note that the template file it should use is view/base/another.xhtml,
    # because BaseController explicitly specifies the template mapping in
    # relation to self.
    get('/one').body.should == 'another'
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
manveru-ramaze-2009.06.04 spec/ramaze/controller/subclass.rb
manveru-ramaze-2009.06.12 spec/ramaze/controller/subclass.rb
manveru-ramaze-2009.06 spec/ramaze/controller/subclass.rb
rjspotter-ramaze-2009.06.29 spec/ramaze/controller/subclass.rb
rjspotter-ramaze-2009.06.31 spec/ramaze/controller/subclass.rb
ramaze-2009.06.12 spec/ramaze/controller/subclass.rb
ramaze-2009.06 spec/ramaze/controller/subclass.rb
ramaze-2009.06.04 spec/ramaze/controller/subclass.rb