Sha256: 83aa43a45693e2f603072ee7ad3e17e361f5c17e86fbda0992675a31cf12b002

Contents?: true

Size: 1.44 KB

Versions: 8

Compression:

Stored size: 1.44 KB

Contents

# encoding: utf-8
#--
#   Copyright (C) 2013 Gitorious AS
#
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU Affero General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU Affero General Public License for more details.
#
#   You should have received a copy of the GNU Affero General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#++
require "test_helper"
require "rack/test"
require "pathname"
require "tiltout"
require "libdolt"
require "dolt/sinatra/multi_repo_browser"

ENV["RACK_ENV"] = "test"

describe Dolt::Sinatra::MultiRepoBrowser do
  include Rack::Test::Methods

  def app
    actions = Test::Actions.new(Stub::Blob.new)
    def actions.repositories; []; end
    view = Tiltout.new(Dolt.template_dir)
    Dolt::Sinatra::MultiRepoBrowser.new(actions, view)
  end

  it "serves the index" do
    get "/"
    assert_equal 200, last_response.status
  end

  it "redirects repo requests to main tree" do
    get "/gitorious.git"
    assert_equal 302, last_response.status
    assert_equal "/gitorious.git/tree/master:", last_response.headers["Location"]
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dolt-0.22.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.21.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.20.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.19.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.18.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.17.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.16.0 ./test/dolt/sinatra/multi_repo_browser_test.rb
dolt-0.15.0 ./test/dolt/sinatra/multi_repo_browser_test.rb