mas/Tests/MasKitTests/Models/SearchResultSpec.swift
Chris Araman 9904707152
🧹 Lint
2021-05-12 11:19:12 -07:00

30 lines
741 B
Swift

//
// SearchResultSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 9/2/20.
// Copyright © 2020 mas-cli. All rights reserved.
//
import Foundation
import Nimble
import Quick
@testable import MasKit
public class SearchResultSpec: QuickSpec {
override public func spec() {
beforeSuite {
MasKit.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"
}
}
}
}