use FixturesSpec as the spec base class

This commit is contained in:
Christian Tietze 2019-06-10 16:18:13 +02:00
parent 3adf7e4205
commit cc4833b334
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() { override func spec() {
describe("Signature(signature)") { describe("Signature(signature)") {
it("should initialize its properties") { it("should initialize its properties") {

View File

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

View File

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

View File

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