summaryrefslogtreecommitdiff
path: root/tests/json_string_matching_test.rb
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2015-06-15 10:06:27 +0200
committerFlorian Frank <flori@ping.de>2015-06-15 10:06:27 +0200
commit6f907a9142e83141a2e01fdddfd18b2013244cd6 (patch)
tree9fa8f8571594f300a2f6038948c4e96842359ff6 /tests/json_string_matching_test.rb
parent0ece7a0404cebb8fb2ce4e6110e70fd05fb48d6b (diff)
downloadjson-6f907a9142e83141a2e01fdddfd18b2013244cd6.tar.gz
Refactor tests and make pure parser green
Diffstat (limited to 'tests/json_string_matching_test.rb')
-rw-r--r--tests/json_string_matching_test.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/json_string_matching_test.rb b/tests/json_string_matching_test.rb
new file mode 100644
index 0000000..7fec841
--- /dev/null
+++ b/tests/json_string_matching_test.rb
@@ -0,0 +1,37 @@
+require 'test_helper'
+require 'time'
+
+class JSONStringMatchingTest < Test::Unit::TestCase
+ include JSON
+
+ class TestTime < ::Time
+ def self.json_create(string)
+ Time.parse(string)
+ end
+
+ def to_json(*)
+ %{"#{strftime('%FT%T%z')}"}
+ end
+
+ def ==(other)
+ to_i == other.to_i
+ end
+ end
+
+ def test_match_date
+ t = TestTime.new
+ t_json = [ t ].to_json
+ time_regexp = /\A\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}[+-]\d{4}\z/
+ assert_equal [ t ],
+ parse(
+ t_json,
+ :create_additions => true,
+ :match_string => { time_regexp => TestTime }
+ )
+ assert_equal [ t.strftime('%FT%T%z') ],
+ parse(
+ t_json,
+ :match_string => { time_regexp => TestTime }
+ )
+ end
+end