mas/Tests/MasKitTests/Models/SearchResultListSpec.swift

35 lines
939 B
Swift
Raw Normal View History

2020-09-06 20:21:28 +00:00
//
// SearchResultListSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 9/2/20.
// Copyright © 2020 mas-cli. All rights reserved.
//
2021-04-26 23:44:17 +00:00
import Foundation
2020-09-06 20:21:28 +00:00
import Nimble
2021-03-22 05:25:18 +00:00
import Quick
@testable import MasKit
2020-09-06 20:21:28 +00:00
2021-05-08 22:49:32 +00:00
public class SearchResultListSpec: QuickSpec {
public override func spec() {
2020-09-06 20:21:28 +00:00
describe("search result list") {
it("can parse bbedit") {
let data = Data(from: "search/bbedit.json")
let decoder = JSONDecoder()
let results = try decoder.decode(SearchResultList.self, from: data)
2020-09-06 20:21:28 +00:00
expect(results.resultCount) == 1
}
it("can parse things") {
let data = Data(from: "search/things.json")
let decoder = JSONDecoder()
let results = try decoder.decode(SearchResultList.self, from: data)
expect(results.resultCount) == 50
}
2020-09-06 20:21:28 +00:00
}
}
}