mas/MasKitTests/Models/SearchResultSpec.swift

26 lines
644 B
Swift
Raw Normal View History

2020-09-06 20:21:28 +00:00
//
// 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)
2020-09-06 20:21:28 +00:00
expect(result.bundleId) == "uikitformac.com.tinybop.thingamabops"
}
2020-09-06 20:21:28 +00:00
}
}
}