Sha256: c0dc3f99db6ee8e1b631cae6f416ce3284445d5549aa4a48d6c0c949f4c71100

Contents?: true

Size: 871 Bytes

Versions: 8

Compression:

Stored size: 871 Bytes

Contents

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

require 'spec/helper'

class MainController < Ramaze::Controller
  engine :None

  define_method('file.ext') { 'file.ext' }
  define_method('css/file.css') { 'file.css' }
  define_method(:path/:to/:js/'file.js') { 'file.js' }

  define_method(:other/:greet/:other) { @greet = 'hi' }
end

describe 'Controller resolving' do
  behaves_like 'http'
  ramaze :view_root => __DIR__/:view

  it 'should work with .' do
    get('/file.ext').body.should == 'file.ext'
  end

  it 'should work with /' do
    get('/css/file.css').body.should == 'file.css'
    get('/path/to/js/file.js').body.should == 'file.js'
  end

  it 'should find templates' do
    get('/other/greet/other').body.should == '<html>Other: hi</html>'
  end
end

Version data entries

8 entries across 8 versions & 4 rubygems

Version Path
Pistos-ramaze-2008.09 spec/ramaze/controller/resolve.rb
clivecrous-ramaze-0.3.9.5 spec/ramaze/controller/resolve.rb
manveru-ramaze-2008.07 spec/ramaze/controller/resolve.rb
manveru-ramaze-2008.08 spec/ramaze/controller/resolve.rb
manveru-ramaze-2008.09 spec/ramaze/controller/resolve.rb
manveru-ramaze-2008.10 spec/ramaze/controller/resolve.rb
ramaze-2008.11 spec/ramaze/controller/resolve.rb
ramaze-2008.06 spec/ramaze/controller/resolve.rb