Merge pull request #155 from DivineDominion/fixture-spec

fix running single specs
This commit is contained in:
Matt Diephouse 2019-06-10 17:11:11 -04:00 committed by GitHub
commit 571cdef3c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ private extension Repository {
}
}
class SignatureSpec: QuickSpec {
class SignatureSpec: FixturesSpec {
override func spec() {
describe("Signature(signature)") {
it("should initialize its properties") {

View File

@ -24,7 +24,7 @@ private extension Repository {
}
}
class ReferenceSpec: QuickSpec {
class ReferenceSpec: FixturesSpec {
override func spec() {
describe("Reference(pointer)") {
it("should initialize its properties") {

View File

@ -24,7 +24,7 @@ private extension Repository {
}
}
class RemoteSpec: QuickSpec {
class RemoteSpec: FixturesSpec {
override func spec() {
describe("Remote(pointer)") {
it("should initialize its properties") {

View File

@ -12,7 +12,7 @@ import Quick
// swiftlint:disable cyclomatic_complexity
class RepositorySpec: QuickSpec {
class RepositorySpec: FixturesSpec {
override func spec() {
describe("Repository.Type.at(_:)") {
it("should work if the repo exists") {