Sha256: 54c1b7201fd8c81a05bd8ba40ea0f61d6a6003b785af4470777f2b21c5e515da
Contents?: true
Size: 884 Bytes
Versions: 14
Compression:
Stored size: 884 Bytes
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__) class SpecFilesCore < Ramaze::Controller map '/', :core end class SpecFilesOther < Ramaze::Controller map '/', :other end Ramaze::App[:core].location = '/' Ramaze::App[:core].options.publics = 'files/public_1' Ramaze::App[:other].location = '/other' Ramaze::App[:other].options.publics = 'files/public_2' Ramaze.middleware!(:spec){|m| m.run(Ramaze::AppMap) } describe Ramaze::Files do behaves_like :rack_test it 'serves files for core app from public_1' do get('/plain.txt').body.should == "Just some text in a file\n" end it 'serves files for other app from public_2' do get('/other/rich.txt').body.should == "Some rich text in here\n" end end
Version data entries
14 entries across 14 versions & 3 rubygems