Sha256: e897e56411dcadd4c461a7cc57615461c121aef8d456030f9182420fefcda212
Contents?: true
Size: 1.26 KB
Versions: 14
Compression:
Stored size: 1.26 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/single_repo_browser" ENV["RACK_ENV"] = "test" describe Dolt::Sinatra::SingleRepoBrowser do include Rack::Test::Methods def app dir = Pathname("../../../").realpath.to_s actions = Test::Actions.new(Stub::Blob.new) view = Tiltout.new(Dolt.template_dir) Dolt::Sinatra::SingleRepoBrowser.new(dir, actions, view) end it "serves the index" do get "/" assert_equal 302, last_response.status end end
Version data entries
14 entries across 14 versions & 1 rubygems