summaryrefslogtreecommitdiff
path: root/test/json/test_json_fixtures.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/json/test_json_fixtures.rb')
-rw-r--r--test/json/test_json_fixtures.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/json/test_json_fixtures.rb b/test/json/test_json_fixtures.rb
deleted file mode 100644
index 59bcb12637..0000000000
--- a/test/json/test_json_fixtures.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# frozen_string_literal: false
-require 'test_helper'
-
-class TestJSONFixtures < Test::Unit::TestCase
- def setup
- fixtures = File.join(File.dirname(__FILE__), 'fixtures/{fail,pass}.json')
- passed, failed = Dir[fixtures].partition { |f| f['pass'] }
- @passed = passed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
- @failed = failed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
- end
-
- def test_passing
- for name, source in @passed
- begin
- assert JSON.parse(source),
- "Did not pass for fixture '#{name}': #{source.inspect}"
- rescue => e
- warn "\nCaught #{e.class}(#{e}) for fixture '#{name}': #{source.inspect}\n#{e.backtrace * "\n"}"
- raise e
- end
- end
- end
-
- def test_failing
- for name, source in @failed
- assert_raise(JSON::ParserError, JSON::NestingError,
- "Did not fail for fixture '#{name}': #{source.inspect}") do
- JSON.parse(source)
- end
- end
- end
-end