From 0317196cf6f5e0997f1279d6331ee123104c7079 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Tue, 19 Dec 2017 13:03:35 -0800 Subject: [PATCH] Add test for Atom authors. Currently failing. --- Frameworks/RSParser/RSParserTests/AtomParserTests.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Frameworks/RSParser/RSParserTests/AtomParserTests.swift b/Frameworks/RSParser/RSParserTests/AtomParserTests.swift index 7bde6c646..2f1a2bde3 100644 --- a/Frameworks/RSParser/RSParserTests/AtomParserTests.swift +++ b/Frameworks/RSParser/RSParserTests/AtomParserTests.swift @@ -53,7 +53,7 @@ class AtomParserTests: XCTestCase { XCTAssertTrue(article.uniqueID.hasPrefix("tag:daringfireball.net,2017:/")) - // XCTAssertEqual(article.authors!.count, 1) // TODO: parse Atom authors + XCTAssertEqual(article.authors!.count, 1) // TODO: parse Atom authors XCTAssertNotNil(article.datePublished) XCTAssert(article.attachments == nil) @@ -98,6 +98,5 @@ class AtomParserTests: XCTestCase { XCTAssertNil(attachment.sizeInBytes) XCTAssertEqual(attachment.mimeType!, "audio/mpeg") } - } }