Fix bug finding channel element in RSS-in-JSON parser.

This commit is contained in:
Brent Simmons
2017-06-26 19:51:01 -07:00
parent 49a5e58ff2
commit c32e1a3933
5 changed files with 434 additions and 906 deletions

View File

@@ -0,0 +1,22 @@
//
// RSSInJSONParserTests.swift
// RSParser
//
// Created by Brent Simmons on 6/26/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
import XCTest
import RSParser
class RSSInJSONParserTests: XCTestCase {
func testScriptingNewsPerformance() {
// 0.003 sec on my 2012 iMac.
let d = parserData("ScriptingNews", "json", "http://scripting.com/")
self.measure {
let _ = try! FeedParser.parse(d)
}
}
}