Created
October 26, 2019 04:37
-
-
Save victorpanitz/aa583c8828479cba0c5461cb813b49ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TableOfContentsSpec: QuickSpec { | |
override func spec() { | |
describe("the 'Documentation' directory") { | |
it("has everything you need to get started") { | |
let sections = Directory("Documentation").sections | |
expect(sections).to(contain("Organized Tests with Quick Examples and Example Groups")) | |
expect(sections).to(contain("Installing Quick")) | |
} | |
context("if it doesn't have what you're looking for") { | |
it("needs to be updated") { | |
let you = You(awesome: true) | |
expect{you.submittedAnIssue}.toEventually(beTruthy()) | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment