2020-09-06 20:21:28 +00:00
|
|
|
//
|
|
|
|
// SearchResultSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2020-09-06 20:21:28 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2024-10-01 18:05:41 +00:00
|
|
|
@testable import mas
|
2020-09-06 20:21:28 +00:00
|
|
|
|
2021-05-08 22:49:32 +00:00
|
|
|
public class SearchResultSpec: QuickSpec {
|
2024-10-02 10:24:02 +00:00
|
|
|
override public static func spec() {
|
2021-04-23 07:01:18 +00:00
|
|
|
beforeSuite {
|
2024-10-01 18:05:41 +00:00
|
|
|
Mas.initialize()
|
2021-04-23 07:01:18 +00:00
|
|
|
}
|
2020-09-06 20:21:28 +00:00
|
|
|
describe("search result") {
|
2020-09-06 20:56:28 +00:00
|
|
|
it("can parse things") {
|
|
|
|
let data = Data(from: "search/things-that-go-bump.json")
|
|
|
|
let decoder = JSONDecoder()
|
2020-09-07 04:23:09 +00:00
|
|
|
let result = try decoder.decode(SearchResult.self, from: data)
|
2020-09-06 20:21:28 +00:00
|
|
|
|
2020-09-06 20:56:28 +00:00
|
|
|
expect(result.bundleId) == "uikitformac.com.tinybop.thingamabops"
|
|
|
|
}
|
2020-09-06 20:21:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|