1 import Quick
2 import Nimble
3 
4 @testable import EXDevLauncher
5 
6 class EXDevLauncherTest: QuickSpec {
specnull7   override func spec() {
8     it("exported constants should contain correct fields") {
9       let module = EXDevLauncher()
10 
11       let exportedConstants = module.constantsToExport()!
12 
13       expect(exportedConstants["manifestString"]).toNot(beNil())
14       expect(exportedConstants["manifestURL"]).toNot(beNil())
15     }
16   }
17 }
18