test-unit-rails 5.0.3 → 5.0.4
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 +11 -0
- data/lib/test/unit/rails/test_help.rb +1 -1
- data/lib/test/unit/rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae5c469ed6a949552e97ce989aa356987efa5ce3
|
|
4
|
+
data.tar.gz: e37737b7cd24a3c96de9d0fb79b62a3eb6cd5c9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d2de64b17da24ccbcc4048eb738475bb18b846e642fb18a57b159b07b0c5162d936b9d3089addc2bf8747731ef011d8ad274363c07ac9cc88b9a3fe532b08dc
|
|
7
|
+
data.tar.gz: e31b666637e96b97461fe9538675dfd33b2163646edc49f631bc752ce22176d970c12317a9b24b16898bcbdabfa06046f03a29a8b4d365906e96d2ba0550af4b
|
data/doc/text/news.md
CHANGED
|
@@ -42,7 +42,7 @@ if defined?(ActiveRecord::Migration)
|
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
class ActiveSupport::TestCase
|
|
45
|
-
self.file_fixture_path = "#{Rails.root}/test/fixtures/files"
|
|
45
|
+
self.file_fixture_path = "#{Rails.root}/test/fixtures/files" if respond_to?(:file_fixture_path=)
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
if defined?(ActiveRecord::Base)
|
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: 5.0.
|
|
4
|
+
version: 5.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -217,6 +217,6 @@ summary: test-unit-rails is a Rails adapter for test-unit 3. You can use full te
|
|
|
217
217
|
integration with test-unit-rails.
|
|
218
218
|
test_files:
|
|
219
219
|
- test/test_action_controller.rb
|
|
220
|
-
- test/test_helper.rb
|
|
221
220
|
- test/run-test.rb
|
|
222
221
|
- test/test_action_dispatch.rb
|
|
222
|
+
- test/test_helper.rb
|