mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
22 lines
335 B
Swift
22 lines
335 B
Swift
//
|
|
// FixturesSpec.swift
|
|
// SwiftGit2
|
|
//
|
|
// Created by Matt Diephouse on 11/16/14.
|
|
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
|
|
//
|
|
|
|
import Quick
|
|
|
|
class FixturesSpec: QuickSpec {
|
|
override func spec() {
|
|
beforeSuite {
|
|
Fixtures.sharedInstance.setUp()
|
|
}
|
|
|
|
afterSuite {
|
|
Fixtures.sharedInstance.tearDown()
|
|
}
|
|
}
|
|
}
|