mas/Tests/masTests/Models/SearchResultListSpec.swift
Ross Goldberg 7cd8c1436b
Downgrade Nimble & Quick to fix testing on newer Xcode versions.
Resolve #583

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-18 10:28:44 -04:00

35 lines
892 B
Swift

//
// SearchResultListSpec.swift
// masTests
//
// Created by Ben Chatelain on 9/2/20.
// Copyright © 2020 mas-cli. All rights reserved.
//
import Foundation
import Nimble
import Quick
@testable import mas
public class SearchResultListSpec: QuickSpec {
override public func spec() {
beforeSuite {
Mas.initialize()
}
describe("search result list") {
it("can parse bbedit") {
expect(
try JSONDecoder().decode(SearchResultList.self, from: Data(from: "search/bbedit.json")).resultCount
)
== 1
}
it("can parse things") {
expect(
try JSONDecoder().decode(SearchResultList.self, from: Data(from: "search/things.json")).resultCount
)
== 50
}
}
}
}