Skip to content

Commit

Permalink
Update Nimble
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Apr 6, 2016
1 parent b8c0df8 commit c3884ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "Quick/Quick" "3a1d88f"
github "Quick/Nimble" ~> 3.2
github "Quick/Nimble" ~> 4.0
github "jspahrsummers/xcconfigs" ~> 0.9
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "thoughtbot/Argo" "v2.3.0"
github "thoughtbot/Curry" "v2.0.0"
github "Quick/Nimble" "v3.2.0"
github "Quick/Nimble" "v4.0.0"
github "jdhealy/PrettyColors" "v3.0.2"
github "Quick/Quick" "v0.9.1"
github "antitypical/Result" "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 61 files
+1 −1 .travis.yml
+3 −0 CONTRIBUTING.md
+2 −1 Nimble.podspec
+144 −102 Nimble.xcodeproj/project.pbxproj
+17 −0 README.md
+0 −0 Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift
+25 −0 Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.m
+0 −0 Sources/Nimble/Adapters/ObjectiveC/DSL.h
+0 −0 Sources/Nimble/Adapters/ObjectiveC/DSL.m
+0 −0 Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h
+0 −0 Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m
+0 −0 Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift
+0 −0 Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift
+18 −0 Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h
+6 −0 Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m
+6 −6 Sources/Nimble/DSL+Wait.swift
+7 −7 Sources/Nimble/DSL.swift
+0 −0 Sources/Nimble/Matchers/AsyncMatcherWrapper.swift
+1 −5 Sources/Nimble/Matchers/BeCloseTo.swift
+1 −1 Sources/Nimble/Matchers/BeEmpty.swift
+6 −12 Sources/Nimble/Matchers/BeLogical.swift
+2 −2 Sources/Nimble/Matchers/HaveCount.swift
+26 −0 Sources/Nimble/Matchers/MatchError.swift
+0 −26 Sources/Nimble/Matchers/MatcherFunc.swift
+5 −19 Sources/Nimble/Matchers/MatcherProtocols.swift
+0 −4 Sources/Nimble/Matchers/SatisfyAnyOf.swift
+0 −128 Sources/Nimble/Matchers/ThrowError.swift
+1 −0 Sources/Nimble/Nimble.h
+2 −2 Sources/Nimble/Utils/Async.swift
+133 −0 Sources/Nimble/Utils/Errors.swift
+129 −38 Sources/Nimble/Utils/Stringers.swift
+0 −18 Sources/Nimble/objc/CurrentTestCaseTracker.m
+3 −3 Tests/Nimble/AsynchronousTest.swift
+3 −3 Tests/Nimble/Helpers/utils.swift
+12 −17 Tests/Nimble/Matchers/BeCloseToTest.swift
+17 −0 Tests/Nimble/Matchers/BeEmptyTest.swift
+1 −7 Tests/Nimble/Matchers/BeGreaterThanTest.swift
+1 −7 Tests/Nimble/Matchers/BeLessThanTest.swift
+4 −4 Tests/Nimble/Matchers/ContainTest.swift
+4 −4 Tests/Nimble/Matchers/HaveCountTest.swift
+78 −0 Tests/Nimble/Matchers/MatchErrorTest.swift
+1 −1 Tests/Nimble/Matchers/PostNotificationTest.swift
+1 −1 Tests/Nimble/Matchers/SatisfyAnyOfTest.swift
+6 −6 Tests/Nimble/objc/ObjCAllPassTest.m
+4 −4 Tests/Nimble/objc/ObjCBeCloseToTest.m
+10 −2 Tests/Nimble/objc/ObjCBeEmptyTest.m
+2 −2 Tests/Nimble/objc/ObjCBeFalsyTest.m
+4 −4 Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m
+4 −4 Tests/Nimble/objc/ObjCBeGreaterThanTest.m
+4 −4 Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m
+4 −4 Tests/Nimble/objc/ObjCBeLessThanTest.m
+1 −1 Tests/Nimble/objc/ObjCBeNilTest.m
+1 −1 Tests/Nimble/objc/ObjCBeTrueTest.m
+2 −2 Tests/Nimble/objc/ObjCBeTruthyTest.m
+6 −6 Tests/Nimble/objc/ObjCContainTest.m
+2 −2 Tests/Nimble/objc/ObjCEqualTest.m
+17 −2 Tests/Nimble/objc/ObjCHaveCount.m
+3 −3 Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m
+6 −6 Tests/Nimble/objc/ObjCUserDescriptionTest.m
+31 −0 Tests/Nimble/objc/ObjcStringersTest.m
+1 −1 circle.yml

0 comments on commit c3884ec

Please sign in to comment.