# File test/test_wpm_messg_manip.rb, line 69
    def test_env
      @env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'
      environ = @messg_manip.env
      assert_equal(1, @env_call)
      assert_equal(1, environ.size)
      assert_equal('application/x-www-form-urlencoded', environ['CONTENT_TYPE'])
    end