1. 21 9月, 2020 1 次提交
  2. 15 9月, 2020 1 次提交
  3. 22 7月, 2020 1 次提交
  4. 15 7月, 2020 1 次提交
  5. 03 6月, 2020 1 次提交
    • P
      Replace 'Stubs out' with 'Generates' in generator USAGE's [ci skip] · 2b099486
      Petrik 提交于
      Generators generate things, but what is meant by 'Stubbing out' might
      confuse beginners and non-native English speakers.
      While generated tests are stubs that should have an implementation, a
      generated model is a valid model that doesn't require any changes.
      2b099486
  6. 20 5月, 2020 1 次提交
  7. 19 5月, 2020 1 次提交
  8. 04 5月, 2020 1 次提交
  9. 14 4月, 2020 1 次提交
  10. 07 4月, 2020 1 次提交
    • B
      Add a route to handle Mandrill's webhook URL check · fce29be3
      Bill Cromie 提交于
      Mandrill's Inbound API checks to see if a URL exists before it creates
      the webhook. It sends a HEAD request, to which we now return a 200 OK
      response to indicate that the route exists.
      
      Now we can generate inbound API calls with ease on Mandrill, without
      having to shuffle around tokens in production.
      
      Fixes #37609.
      fce29be3
  11. 03 4月, 2020 1 次提交
  12. 01 4月, 2020 1 次提交
  13. 31 3月, 2020 1 次提交
  14. 30 3月, 2020 1 次提交
  15. 24 3月, 2020 1 次提交
  16. 25 2月, 2020 1 次提交
  17. 22 2月, 2020 1 次提交
  18. 13 2月, 2020 2 次提交
  19. 08 2月, 2020 1 次提交
  20. 01 1月, 2020 1 次提交
  21. 28 12月, 2019 1 次提交
  22. 24 12月, 2019 1 次提交
    • A
      Add ActionMailbox install generator · fc12d224
      Abhay Nikam 提交于
      Forward ActionMailbox install to install generator and hide the ActionMailbox install generator from generator list
      
      Updated the Action Mailbox install task description
      fc12d224
  23. 07 12月, 2019 1 次提交
  24. 03 12月, 2019 1 次提交
    • P
      Test extensions to Mail gem · 40d63cee
      Paul McMahon 提交于
      The from_address method is added to Mail::Message, but is not used
      internally to ActionMailbox, nor tested (even implicitly). As it is part
      of the public API, it feels important to at least have a basic test of
      it.
      
      Similarly, the x_original_to_addresses was only implicitly tested via
      the recipients_addresses method. Given other similar methods are
      explicitly tested, it feels like an oversight not to test it as well.
      
      As the test introduced from_address didn't align with the naming of
      RecipientsTest, I renamed it to the more generic AddressesTest.
      40d63cee
  25. 15 10月, 2019 1 次提交
  26. 12 10月, 2019 1 次提交
  27. 03 10月, 2019 1 次提交
  28. 02 10月, 2019 1 次提交
  29. 17 9月, 2019 1 次提交
  30. 27 8月, 2019 1 次提交
    • Y
      Ignore SQLite3 database files generated by parallel testing · c5e3c537
      Yasuo Honda 提交于
      Rails 6.0 introduces parallel testing and the default degree of parallelism is configured based on the number of CPU.
      refer https://github.com/rails/rails/pull/34735 https://github.com/rails/rails/pull/31900
      
      When any minitest executed under the OS where 2 or more CPU available,
      SQLite 3 database files are not git-ignored.
      
      Also updated other files which ignores SQLite database files.
      
      * Steps to reproduce
      
      ```
      $ git clone https://github.com/yahonda/rep_ignore_sqlite3_databases.git
      $ cd rep_ignore_sqlite3_databases/
      $ bin/rails test
      $ git status
      ```
      
      * Expected behavior:
      
      - No `Untracked files:`
      
      * Actual behavior:
      
      - SQLite 3 database files appeared
      
      ```
      $ git status
      On branch master
      Untracked files:
        (use "git add <file>..." to include in what will be committed)
      
      	db/test.sqlite3-0
      	db/test.sqlite3-1
      	db/test.sqlite3-2
      	db/test.sqlite3-3
      	db/test.sqlite3-4
      	db/test.sqlite3-5
      
      nothing added to commit but untracked files present (use "git add" to track)
      $
      ```
      c5e3c537
  31. 08 8月, 2019 1 次提交
  32. 07 8月, 2019 2 次提交
    • G
      Correct assertion argument order · c2f197c7
      George Claghorn 提交于
      c2f197c7
    • M
      Allow testing multipart emails in Action Mailbox · ab34ed8a
      Michael Herold 提交于
      Allow passing a block to the create_inbound_email_from_mail and
      receive_inbound_email_from_mail test helper methods.
      
      When you wanted to test a multipart email -- for example, an email that
      has both a plaintext part and an HTML part -- there wasn't a way to
      easily build one without a pre-made fixture. By allowing you to pass a
      block to these methods, we unlock the power of Mail.new to easily
      create a variety of emails, from multi-part emails, to emails with
      attachments, and beyond.
      ab34ed8a
  33. 01 8月, 2019 1 次提交
  34. 29 7月, 2019 1 次提交
  35. 27 7月, 2019 1 次提交
  36. 26 7月, 2019 2 次提交
  37. 23 6月, 2019 1 次提交