mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
e3e24145d9
No longer needed as of Quick 3
32 lines
906 B
Swift
32 lines
906 B
Swift
//
|
|
// 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
|
|
}
|
|
}
|
|
}
|
|
}
|