mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
f8d7a36a4c
Quick upgrade necessary if we ever switch from PromiseKit to Swift concurrency. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
30 lines
739 B
Swift
30 lines
739 B
Swift
//
|
|
// SearchResultSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 9/2/20.
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class SearchResultSpec: QuickSpec {
|
|
override public static func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("search result") {
|
|
it("can parse things") {
|
|
let data = Data(from: "search/things-that-go-bump.json")
|
|
let decoder = JSONDecoder()
|
|
let result = try decoder.decode(SearchResult.self, from: data)
|
|
|
|
expect(result.bundleId) == "uikitformac.com.tinybop.thingamabops"
|
|
}
|
|
}
|
|
}
|
|
}
|