mas/MasKitTests/Models/SearchResultListSpec.swift

33 lines
908 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.
//
@testable import MasKit
import Quick
import Nimble
class SearchResultListSpec: QuickSpec {
override func spec() {
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)
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
}
}
}