mas/Tests/masTests/Models/SearchResultSpec.swift

31 lines
739 B
Swift
Raw Normal View History

2020-09-06 20:21:28 +00:00
//
// SearchResultSpec.swift
// masTests
2020-09-06 20:21:28 +00:00
//
// Created by Ben Chatelain on 9/2/20.
// Copyright © 2020 mas-cli. All rights reserved.
//
2021-04-26 23:44:17 +00:00
import Foundation
2020-09-06 20:21:28 +00:00
import Nimble
2021-03-22 05:25:18 +00:00
import Quick
@testable import mas
2020-09-06 20:21:28 +00:00
2021-05-08 22:49:32 +00:00
public class SearchResultSpec: QuickSpec {
override public static func spec() {
2021-04-23 07:01:18 +00:00
beforeSuite {
Mas.initialize()
2021-04-23 07:01:18 +00:00
}
2020-09-06 20:21:28 +00:00
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
}
}
}