Sha256: 5b6bb928b71402ccdd5a43897a43bb77c869bef51b17f842a66c83cdb67dfa5c

Contents?: true

Size: 984 Bytes

Versions: 28

Compression:

Stored size: 984 Bytes

Contents

require File.expand_path("spec_helper", File.dirname(File.dirname(__FILE__)))

describe "path_matchers plugin" do 
  it ":extension matcher should match given file extension" do
    app(:path_matchers) do |r|
      r.on "css" do
        r.on :extension=>"css" do |file|
          file
        end
      end
    end

    body("/css/reset.css").must_equal 'reset'
    status("/css/reset.bar").must_equal 404
  end

  it ":suffix matcher should match given suffix" do
    app(:path_matchers) do |r|
      r.on "css" do
        r.on :suffix=>".css" do |file|
          file
        end
      end
    end

    body("/css/reset.css").must_equal 'reset'
    status("/css/reset.bar").must_equal 404
  end

  it ":prefix matcher should match given prefix" do
    app(:path_matchers) do |r|
      r.on "css" do
        r.on :prefix=>"reset" do |file|
          file
        end
      end
    end

    body("/css/reset.css").must_equal '.css'
    status("/css/foo.bar").must_equal 404
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
roda-2.9.0 spec/plugin/path_matchers_spec.rb
roda-2.8.0 spec/plugin/path_matchers_spec.rb
roda-2.7.0 spec/plugin/path_matchers_spec.rb
roda-2.6.0 spec/plugin/path_matchers_spec.rb
roda-2.5.1 spec/plugin/path_matchers_spec.rb
roda-2.5.0 spec/plugin/path_matchers_spec.rb
roda-2.4.0 spec/plugin/path_matchers_spec.rb
roda-2.3.0 spec/plugin/path_matchers_spec.rb