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