aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
AgeCommit message (Collapse)Author
2014-06-18Move test helpers into Homebrew::TestCaseJack Nagel
2014-06-18Use a custom test class so we can avoid monkeypatchingJack Nagel
2014-06-16Don't load unused compat files for testsJack Nagel
2014-06-13Only define intel family test on intel CPUJack Nagel
2014-06-12Always pass path to formula constructorJack Nagel
2014-06-12Make compiler objects directlyJack Nagel
2014-06-12No need to send, just call the methodJack Nagel
2014-06-12Handle failures in temporary_install betterJack Nagel
2014-06-12Remove repeated test codeJack Nagel
2014-06-12Always expand __FILE__Jack Nagel
2014-06-12Always pass a path to formula constructor in testsJack Nagel
2014-06-12Move a test class that is only used once into the testJack Nagel
2014-06-12Remove an extra slash in file:// URLs in testsJack Nagel
2014-06-12Use example.com as domain in testsJack Nagel
2014-06-12Remove dummy methodJack Nagel
2014-06-12Remove a const_defined? checkJack Nagel
2014-06-12Deprecate Pathname#cp and Pathname#chmod_RJack Nagel
As far as I can tell these methods have only ever been used in the test suite. Since Formula includes FileUtils, it is generally simpler (and in the case of cp, more readable) to use the FileUtils methods directly. Closes #30081.
2014-06-11Decouple CompilerSelector from MacOS, clean up testsJack Nagel
2014-06-11Fix up some assertionsJack Nagel
2014-06-11Use assert_emptyJack Nagel
2014-06-10Remove unnecessary requireJack Nagel
2014-06-10Remove unnecessary codeJack Nagel
2014-06-10Rename TEST_FOLDER to TEST_DIRECTORYJack Nagel
2014-06-10Remove ABS__FILE constant from test environmentJack Nagel
2014-06-10Scope setup to the tests that need itJack Nagel
2014-06-10Add methods for building test file pathsJack Nagel
2014-06-10Trust the fixtures and stop asserting on file(1) outputJack Nagel
2014-06-10Pull common code into setup methodJack Nagel
2014-06-10Extract constant stringsJack Nagel
2014-06-10Pull mock initialization code into initializeJack Nagel
2014-06-10Move updater mock into test class namespaceJack Nagel
2014-06-10Use external interface in testsJack Nagel
2014-06-10Simplify test setupJack Nagel
2014-06-10Remove rcov rake taskJack Nagel
rcov is not compatible with Ruby 2.0.
2014-06-10Remove ruby-prof rake taskJack Nagel
The areas that we are interested in optimizing for performance are things that are invoked repeatedly, and are not evident in the test suite.
2014-06-10Remove default values from formula constructor parametersJack Nagel
Closes #30017.
2014-06-09Use RbConfig.ruby if it's availableJack Nagel
2014-06-09Fix formula test helper parametersJack Nagel
2014-06-04Clean up some test assertionsJack Nagel
2014-05-28Remove unused method and associated test fixturesJack Nagel
2014-05-27Remove support for version "schemes", just pass version objects directlyJack Nagel
I'm not sure why I thought reinventing object instantiation was a good idea.
2014-05-26Add failing test for parsing version from erlang bottle filenameJack Nagel
2014-05-15bottle_version: support fontforge scheme.Mike McQuaid
2014-05-14Taps: cleanup regexps around TapsTsukasa OMOTO
Closes #29139. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-06bottle_version: handle zpython bottle.Mike McQuaid
Closes #28870. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-05-06bottle_version: parse disco bottle versions.Mike McQuaid
2014-05-03The \w character class already includes underscoreJack Nagel
Newer versions of Ruby issue a warning for repeated character classes.
2014-05-02Fix for String#undentBaptiste Fontaine
Without it, String#undent would fail on unindented strings, e.g.: "foo".undent NoMethodError: undefined method `length' for nil:NilClass` Closes #28873. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-29Remove test that doesn't add valueJack Nagel
2014-04-25Pass around only absolute paths when dealing with tapsJack Nagel