Skip to content

Commit

Permalink
Update Nimble and Quick to their latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
plu committed Jul 30, 2015
1 parent c122eea commit 717f4d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vendor/Nimble
Submodule Nimble updated 65 files
+1 −0 .gitignore
+0 −9 .travis.yml
+23 −4 CONTRIBUTING.md
+2 −2 Nimble.podspec
+52 −40 Nimble.xcodeproj/project.pbxproj
+2 −2 Nimble.xcodeproj/project.xcworkspace/xcshareddata/Nimble.xccheckout
+2 −3 Nimble/Adapters/AdapterProtocols.swift
+20 −0 Nimble/Adapters/AssertionDispatcher.swift
+54 −6 Nimble/Adapters/AssertionRecorder.swift
+28 −0 Nimble/Adapters/NimbleXCTestHandler.swift
+0 −10 Nimble/Adapters/XCTestHandler.swift
+8 −8 Nimble/DSL+Wait.swift
+8 −6 Nimble/DSL.swift
+31 −18 Nimble/Expectation.swift
+51 −4 Nimble/Expression.swift
+32 −7 Nimble/FailureMessage.swift
+88 −0 Nimble/Matchers/AllPass.swift
+11 −1 Nimble/Matchers/BeAKindOf.swift
+11 −1 Nimble/Matchers/BeAnInstanceOf.swift
+3 −3 Nimble/Matchers/BeCloseTo.swift
+2 −1 Nimble/Matchers/BeEmpty.swift
+2 −2 Nimble/Matchers/BeGreaterThan.swift
+2 −2 Nimble/Matchers/BeGreaterThanOrEqualTo.swift
+1 −1 Nimble/Matchers/BeIdenticalTo.swift
+2 −2 Nimble/Matchers/BeLessThan.swift
+1 −1 Nimble/Matchers/BeLessThanOrEqual.swift
+38 −21 Nimble/Matchers/BeLogical.swift
+1 −1 Nimble/Matchers/BeNil.swift
+2 −2 Nimble/Matchers/BeginWith.swift
+16 −2 Nimble/Matchers/Contain.swift
+5 −4 Nimble/Matchers/EndWith.swift
+63 −1 Nimble/Matchers/Equal.swift
+2 −2 Nimble/Matchers/Match.swift
+4 −35 Nimble/Matchers/MatcherProtocols.swift
+129 −62 Nimble/Matchers/RaisesException.swift
+79 −0 Nimble/ObjCExpectation.swift
+4 −4 Nimble/Utils/Stringers.swift
+48 −55 Nimble/Wrappers/AsyncMatcherWrapper.swift
+0 −28 Nimble/Wrappers/BasicMatcherWrapper.swift
+0 −18 Nimble/Wrappers/FullMatcherWrapper.swift
+56 −16 Nimble/Wrappers/MatcherFunc.swift
+0 −56 Nimble/Wrappers/NonNilMatcherWrapper.swift
+17 −93 Nimble/Wrappers/ObjCMatcher.swift
+8 −4 Nimble/objc/DSL.h
+16 −4 Nimble/objc/DSL.m
+6 −7 NimbleTests/AsynchronousTest.swift
+44 −21 NimbleTests/Helpers/utils.swift
+74 −0 NimbleTests/Matchers/AllPassTest.swift
+18 −0 NimbleTests/Matchers/BeAKindOfTest.swift
+20 −0 NimbleTests/Matchers/BeAnInstanceOfTest.swift
+1 −1 NimbleTests/Matchers/BeEmptyTest.swift
+9 −9 NimbleTests/Matchers/BeIdenticalToObjectTest.swift
+2 −2 NimbleTests/Matchers/BeIdenticalToTest.swift
+22 −0 NimbleTests/Matchers/BeLogicalTest.swift
+1 −1 NimbleTests/Matchers/BeNilTest.swift
+2 −2 NimbleTests/Matchers/BeginWithTest.swift
+2 −2 NimbleTests/Matchers/EndWithTest.swift
+31 −0 NimbleTests/Matchers/EqualTest.swift
+122 −39 NimbleTests/Matchers/RaisesExceptionTest.swift
+4 −0 NimbleTests/objc/NimbleSpecHelper.h
+38 −0 NimbleTests/objc/ObjCAllPassTest.m
+133 −16 NimbleTests/objc/ObjCRaiseExceptionTest.m
+75 −32 README.md
+37 −0 circle.yml
+5 −5 test

0 comments on commit 717f4d5

Please sign in to comment.