1. 18 2月, 2012 1 次提交
  2. 09 2月, 2012 1 次提交
  3. 17 1月, 2012 2 次提交
  4. 10 1月, 2012 3 次提交
  5. 06 1月, 2012 2 次提交
  6. 03 1月, 2012 2 次提交
  7. 25 12月, 2011 1 次提交
  8. 21 12月, 2011 1 次提交
  9. 03 10月, 2011 1 次提交
  10. 02 10月, 2011 1 次提交
  11. 23 8月, 2011 2 次提交
  12. 26 6月, 2011 1 次提交
  13. 11 6月, 2011 1 次提交
  14. 04 6月, 2011 1 次提交
    • A
      Refactor ActionController::TestCase cookies · d4658d86
      Andrew White 提交于
      Assigning cookies for test cases should now use cookies[], e.g:
      
        cookies[:email] = 'user@example.com'
        get :index
        assert_equal 'user@example.com', cookies[:email]
      
      To clear the cookies, use clear, e.g:
      
        cookies.clear
        get :index
        assert_nil cookies[:email]
      
      We now no longer write out HTTP_COOKIE and the cookie jar is
      persistent between requests so if you need to manipulate the environment
      for your test you need to do it before the cookie jar is created.
      d4658d86
  15. 22 5月, 2011 1 次提交
    • D
      Stringify param values in controller tests. · 9277e72a
      David Chelimsky 提交于
      This reduces false positives that come from using ints in params in
      tests, which do not get converted to strings in the tests. In
      implementations going through rack, they do get converted to strings.
      
      - David Chelimsky and Sam Umbach
      9277e72a
  16. 28 4月, 2011 1 次提交
  17. 27 9月, 2010 1 次提交
  18. 06 9月, 2010 1 次提交
  19. 05 9月, 2010 2 次提交
  20. 24 8月, 2010 1 次提交
  21. 17 8月, 2010 1 次提交
  22. 14 8月, 2010 2 次提交
  23. 02 8月, 2010 1 次提交
  24. 22 7月, 2010 1 次提交
  25. 18 4月, 2010 1 次提交
  26. 09 4月, 2010 1 次提交
  27. 31 3月, 2010 1 次提交
  28. 04 3月, 2010 2 次提交
  29. 26 2月, 2010 1 次提交
  30. 22 2月, 2010 1 次提交
  31. 13 12月, 2009 1 次提交