diff options
author | Stormwind <stormwind@stormwinds-page.de> | 2013-01-06 12:37:07 +0100 |
---|---|---|
committer | Stormwind <stormwind@stormwinds-page.de> | 2013-01-06 12:37:07 +0100 |
commit | e81dff9c07770650b8bf81e30474a0b957316de8 (patch) | |
tree | 5eae119928d4738806ceb33f151459ac8de59405 /lib | |
parent | cd97198e2269e8651d5f8081ec20501c8ea39aa9 (diff) |
Kill all mutants i Zero::Request
Fix tests for PATCH, because spec_helper didn't support it and the tests where
wrong.
Remove if statement from "conent_type", because ruby already returns nil, if the
requested key in a hash is not found. (Sounds a bit ugly, but it's true.)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zero/request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zero/request.rb b/lib/zero/request.rb index c93bb7e..36ef705 100644 --- a/lib/zero/request.rb +++ b/lib/zero/request.rb @@ -56,7 +56,7 @@ module Zero # TODO change into its own object? # @return [String] returns the content type of the request def content_type - @env[CONST_CONTENT_TYPE] if @env.has_key?(CONST_CONTENT_TYPE) + @env[CONST_CONTENT_TYPE] end # get the media types |