mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
87d6b01bf6
Fixes #284
25 lines
645 B
Swift
25 lines
645 B
Swift
//
|
|
// SearchResultSpec.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 SearchResultSpec: QuickSpec {
|
|
override func spec() {
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
}
|