Sha256: 719c3584c82398a5954c0b7ff5cad71a7858f5bd9cac1ca1fae89f012d9aab5b
Contents?: true
Size: 1.22 KB
Versions: 8
Compression:
Stored size: 1.22 KB
Contents
require 'spec/helper' class SpecControllerInheritedMain < Ramaze::Controller Ramaze.node('/') def index @ngr = "Main is nagoro" "<p>#{@ngr}</p>" end end class SpecControllerInheritedOther < Ramaze::Controller Ramaze.node('/other').engine(:Haml) def index; "%p Other is haml"; end end class SpecControllerInheritedAnother < SpecControllerInheritedOther Ramaze.node('/another') def index; "%p Another is haml. Inherit from Other"; end end class SpecControllerInheritedYetAnother < SpecControllerInheritedAnother Ramaze.node('/yet_another').engine(:Maruku) def index; "Yet Another is Maruku. Inherited but overriden"; end end describe 'Ramaze::Controller#self.inherited' do behaves_like :rack_test should 'default renders nagoro' do get('/').body.should == "<p>Main is nagoro</p>" end should 'be able to render provided format' do get('/other').body.should == "<p>Other is haml</p>\n" end should "inherit provide from parent controller" do get('/another').body.should == "<p>Another is haml. Inherit from Other</p>\n" end should "be able to override inherited provide" do get('/yet_another').body.should == "<p>Yet Another is Maruku. Inherited but overriden</p>" end end
Version data entries
8 entries across 8 versions & 3 rubygems