2020-09-06 14:21:28 -06:00
|
|
|
//
|
|
|
|
// SearchResultSpec.swift
|
|
|
|
// MasKitTests
|
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 9/2/20.
|
|
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2021-03-21 22:25:18 -07:00
|
|
|
import Quick
|
|
|
|
|
|
|
|
@testable import MasKit
|
2020-09-06 14:21:28 -06:00
|
|
|
|
|
|
|
class SearchResultSpec: QuickSpec {
|
|
|
|
override func spec() {
|
|
|
|
describe("search result") {
|
2020-09-06 14:56:28 -06:00
|
|
|
it("can parse things") {
|
|
|
|
let data = Data(from: "search/things-that-go-bump.json")
|
|
|
|
let decoder = JSONDecoder()
|
2020-09-06 22:23:09 -06:00
|
|
|
let result = try decoder.decode(SearchResult.self, from: data)
|
2020-09-06 14:21:28 -06:00
|
|
|
|
2020-09-06 14:56:28 -06:00
|
|
|
expect(result.bundleId) == "uikitformac.com.tinybop.thingamabops"
|
|
|
|
}
|
2020-09-06 14:21:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|