aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in test nameCarlos Antonio da Silva2012-11-042-3/+2
|
* Make caller attribute in deprecation methods optionalAlexey Gaziev2012-10-301-1/+1
|
* Fix some assert_raise calls containing messages in Active SupportCarlos Antonio da Silva2012-10-282-7/+15
|
* Fix queueing tests that should be consuming the queue rather than draining itJeremy Kemper2012-10-261-3/+9
|
* Job worker thread logs failed jobs tooJeremy Kemper2012-10-261-1/+1
|
* Job worker thread logs to stderr if no logger is providedJeremy Kemper2012-10-261-0/+12
|
* Implement replace method so key? works correctly.David Graham2012-10-261-0/+12
|
* make the cache test more @tenderlove(ing) and not depend on internal ↵Noah Hendrix2012-10-231-2/+7
| | | | implentation
* pass the key to the block in cache.fetch on missesNoah Hendrix2012-10-231-2/+7
|
* fix assertionsAaron Patterson2012-10-181-2/+2
|
* Make DescendantsTracker thread safe and optimize the #descendants method.thedarkone2012-10-182-11/+17
|
* some ruby interpreters don't have ruby-prof so just skip the testsAaron Patterson2012-10-181-3/+12
| | | | rather than exiting the process.
* Revert "remove unnecessary object/conversions file"Xavier Noria2012-10-162-0/+2
| | | | | | | This file is used at least by Active Merchant, its existence is maybe not necessary but no big deal either. This reverts commit ae9b3d7cecd77b9ace38671b183e1a360bf632b6.
* Remove the queue container. Premature consolidation. Set up and maintain ↵Jeremy Kemper2012-10-121-28/+0
| | | | queues in the classes that use them instead.
* Merge pull request #7007 from Mik-die/hash_extractRafael Mendonça França2012-10-121-1/+25
|\ | | | | make Hash#extract! more symmetric with Hash#slice
| * add more testcases and doc about Hash#extract!Mikhail Dieterle2012-10-081-2/+9
| |
| * make Hash#extract! more symmetric with Hash#sliceMikhail Dieterle2012-10-081-0/+17
| |
* | Move the TestQueue tests to the proper fileRafael Mendonça França2012-10-121-0/+44
| |
* | Cleanup trailing whitespacesdfens2012-10-121-1/+1
| |
* | adding a test for b21f24d9807bd161af947cf0f0cc440c9adffb73Aaron Patterson2012-10-111-0/+14
| |
* | let (array|hash)/conversions.rb load the extensions in ↵Xavier Noria2012-10-091-2/+0
| | | | | | | | object/to_(param|query).rb
* | adds a missing requireXavier Noria2012-10-091-0/+1
| |
* | adds missing requireXavier Noria2012-10-091-0/+1
| |
* | Merge pull request #7817 from NARKOZ/object-conversionsXavier Noria2012-10-092-2/+0
|\ \ | |/ |/| remove unnecessary object/conversions file
| * remove unnecessary object/conversions fileNihad Abbasov2012-10-022-2/+0
| |
* | Ruby 2 compat. Hash[] now raises on bad elements rather than ignoring them. ↵Jeremy Kemper2012-10-061-1/+0
| | | | | | | | No sense over-testing this MRI-specific behavior. See ruby/ruby@8d6add973ebcb3b4c1efbfaf07786550a3e219af
* | Merge pull request #6952 from NZKoz/key_generatorMichael Koziarski2012-10-021-0/+32
|\ \ | |/ |/| Add ActiveSupport::KeyGenerator as a simple wrapper around PBKDF2
| * Add ActiveSupport::KeyGenerator as a simple wrapper around PBKDF2Michael Koziarski2012-10-011-0/+32
| | | | | | | | | | | | This will be used to derive keys from the secret and a salt, in order to allow us to do things like encrypted cookie stores without using the secret for multiple purposes directly.
* | warning fixed: (...) interpreted as grouped expressionArun Agrawal2012-10-011-1/+1
| |
* | fix broken cache testsBrian Durand2012-09-301-1/+1
|/
* Fix other assertions that were backwards.Steve Klabnik2012-09-301-5/+5
| | | | This time I used ack.
* fix order of assertions.Steve Klabnik2012-09-301-2/+2
|
* Optimize ActiveSupport::Cache::Entry to reduce memory and processing overhead.Brian Durand2012-09-301-38/+53
|
* Changed test names to match proper contextWojciech Wnętrzak2012-09-281-2/+2
|
* ConstantLookup is not needed in every TestCase decendantAndy Lindeman2012-09-261-0/+1
|
* Tests tag the Rails log with the current test class and test caseJeremy Kemper2012-09-261-0/+15
|
* Allow wrapping a logger that hasn't set a formatter. Default to our ↵Jeremy Kemper2012-09-261-0/+8
| | | | SimpleFormatter. Otherwise we try extending nil with the tagging API.
* Add logger.push_tags and .pop_tags to complement logger.taggedJeremy Kemper2012-09-261-0/+17
|
* Add missing inflector dependencyMike Moore2012-09-251-1/+1
|
* Add register_spec_type test coverageMike Moore2012-09-241-0/+23
|
* Create ActiveSupport::Testing::ConstantLookupMike Moore2012-09-241-0/+58
| | | | | AS::TC::ConstantLookup walks the test's name to find the constant it is describing. This additional lookup logic is needed to better support minitest's spec DSL.
* Remove .rb from require sentencesJosé Corcuera Z2012-09-211-1/+1
|
* Merge pull request #7613 from marcandre/delegate_to_classJeremy Kemper2012-09-201-0/+11
|\ | | | | Nice and easy delegation to the class
| * Nice and easy delegation to the classMarc-Andre Lafortune2012-09-111-0/+11
| |
* | Fix #6962. AS::TimeWithZone#strftime responds incorrectly to %:z and %::z ↵kennyj2012-09-201-0/+8
| | | | | | | | format strings.
* | No need to defensively work jobs in another threadJeremy Kemper2012-09-181-1/+1
| |
* | Date.beginning_of_week thread local and beginning_of_week application config ↵gregolsen2012-09-181-0/+50
| | | | | | | | option added (default is Monday)
* | Remove unncessary code.kennyj2012-09-171-1/+0
| |
* | Always run jobs using a consumer, even in synchronous & test queues, to ↵Jeremy Kemper2012-09-163-37/+59
| | | | | | | | ensure shared behavior.
* | set up config_accessor with a default value by blockLarry Lv2012-09-171-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ActiveSupport::Configurable should allow config_accessor to take default value by block, just like cattr_accessor. class User include ActiveSupport::Configurable config_accessor :hair_colors do [:brown, :black, :blonde, :red] end end User.hair_colors # => [:brown, :black, :blonde, :red] * remove trailing whitespaces in configurable.rb and its test file. * Update ActiveSupport CHANGELOG.