Sha256: c3ae87dfe18f68025ccb14e5c81fad202b88c242271e6f7567b93cb0307fb728

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

# -*- ruby -*-
#
# Copyright (C) 2012  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

require "bundler/setup"

require "test/unit"
require "test/unit/notify"
require "test/unit/capybara"

require "pp"

tmp_path = File.expand_path(File.join("tmp", "capybara"), __FILE__)
if Capybara::VERSION >= "3.0.0.rc1"
  Capybara.save_path = tmp_path
else
  Capybara.save_and_open_page_path= tmp_path
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
test-unit-capybara-1.1.1 test/test-unit-capybara-test-utils.rb
test-unit-capybara-1.1.0 test/test-unit-capybara-test-utils.rb
test-unit-capybara-1.0.9 test/test-unit-capybara-test-utils.rb
test-unit-capybara-1.0.8 test/test-unit-capybara-test-utils.rb
test-unit-capybara-1.0.7 test/test-unit-capybara-test-utils.rb
test-unit-capybara-1.0.6 test/test-unit-capybara-test-utils.rb