mirror of
https://github.com/mas-cli/mas
synced 2024-11-24 20:43:10 +00:00
dccac33abb
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
31 lines
740 B
Swift
31 lines
740 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") {
|
|
expect(
|
|
try JSONDecoder()
|
|
.decode(SearchResult.self, from: Data(from: "search/things-that-go-bump.json"))
|
|
.bundleId
|
|
)
|
|
== "uikitformac.com.tinybop.thingamabops"
|
|
}
|
|
}
|
|
}
|
|
}
|