test-unit-rails 5.2.2 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/doc/text/news.md +8 -0
- data/lib/rails/commands/test/test_command.rb +1 -0
- data/lib/test/unit/rails/version.rb +2 -2
- data/test/test_system_test_case.rb +0 -5
- metadata +4 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5aa6203d7433fffcd18a8066b898feca5f281f8740e154def1b1a40efc2357f
|
4
|
+
data.tar.gz: 3fd9d2f800dea8931408f3b8db7ee1c03f69ee0ea8018a7962dcf5257ca14504
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8de8039cdc45640d88d2856621f05e3a04880c007e853a43b68054d8e8770228a53eede25c1dbce8bc585193110f9b809c88c391cb9e788a44deffc87628234a
|
7
|
+
data.tar.gz: 958f7cbb24b3b1e7ccbed6d652c1842b7ba7e51bd9e2597367906697e5e62eb19401cac9cbbe2ddba18278871ba0b9ec67e824f8b78260a09e13d2d9c2f92fda
|
data/doc/text/news.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2012-
|
1
|
+
# Copyright (C) 2012-2019 Sutou Kouhei <kou@clear-code.com>
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,7 +17,7 @@
|
|
17
17
|
module Test
|
18
18
|
module Unit
|
19
19
|
module Rails
|
20
|
-
VERSION = "
|
20
|
+
VERSION = "6.0.0"
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -1,11 +1,6 @@
|
|
1
1
|
require "test_helper"
|
2
2
|
|
3
3
|
if ActionDispatch::SystemTesting.const_defined?(:Server)
|
4
|
-
if ENV["TRAVIS"]
|
5
|
-
require "chromedriver/helper"
|
6
|
-
Chromedriver.set_version "2.35"
|
7
|
-
end
|
8
|
-
|
9
4
|
class TestSystemTestCase < ActionDispatch::SystemTestCase
|
10
5
|
have_browser = ActionDispatch::SystemTesting.const_defined?(:Browser)
|
11
6
|
if have_browser
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: test-unit-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -164,20 +164,6 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: chromedriver-helper
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - ">="
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '0'
|
181
167
|
description: 'Rails supports Minitest but doesn''t support test-unit.
|
182
168
|
|
183
169
|
'
|
@@ -223,15 +209,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
223
209
|
version: '0'
|
224
210
|
requirements: []
|
225
211
|
rubyforge_project:
|
226
|
-
rubygems_version:
|
212
|
+
rubygems_version: 2.7.6.2
|
227
213
|
signing_key:
|
228
214
|
specification_version: 4
|
229
215
|
summary: test-unit-rails is a Rails adapter for test-unit gem. You can use full test-unit
|
230
216
|
gem features, [RR](https://rubygems.org/gems/rr) integration and [Capybara](https://rubygems.org/gems/capybara)
|
231
217
|
integration with test-unit-rails.
|
232
218
|
test_files:
|
219
|
+
- test/run-test.rb
|
233
220
|
- test/test_system_test_case.rb
|
234
221
|
- test/test_action_controller.rb
|
235
|
-
- test/run-test.rb
|
236
222
|
- test/test_action_dispatch.rb
|
237
223
|
- test/test_helper.rb
|