| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Integration tests already handle all the fancy url mapping we need to do
so inherting from that allows us to not need to reinvent the wheel in
terms of loading up the route handling required to use `visit
users_path` over `visit /users`.
|
|
|
|
|
| |
Adds assertions that are not part of Capybara but may be useful to Rails
users writing system tests.
|
|
|
|
|
| |
This allows any application to change the driver adapter based on the
config settings in the test env.
|
|
|
|
|
| |
These FormHelpers are selectors that aren't a capybara default but are
considered useful for Rails applications.
|
|
|
|
|
|
|
| |
This is not yet configurable but is the minimum required to make
Capybara work with the Selenium driver. A lot of this will change as the
tests get fleshed out and the initialization requirements will eventually
be configurable via the application.
|
|
|
|
|
|
| |
Capybara defaults to Rack Test for it's driver and works out of the box
but this adds the headers and allows for future configurable adapters
for system testing.
|
|
|
|
|
|
|
| |
This skelton is the bare minimum to get system tests to actually run in
an application. This of course doesn't yet actually run a test but it is
enough for `bin/rails test:system` to attempt to run files in
`test/system` that inherit from `Rails::SystemTestCase`.
|
|
|
|
|
|
|
| |
* Generates system test requirements with new Rails app
* Includes required default gems in Gemfile for Rails app
* Generates a single system test case
* Generates a system test case with scaffold
|
|\
| |
| | |
Some improvements to the API site's sidebar
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since Active Support is monkey patching a lot of core classes, let's
rather document these changes under a new section so they are still
documented but not encumbering the sidebar.
We can safely remove the rescuing of the `LoadError` since as of
cd7cc525, it's not possible to generate the API from an application.
[ci skip]
[Kasper Timm Hansen & Robin Dupret]
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
There are a lot of monkey patches inside the code base but there's
no need to document external constants so let's remove them from
the documentation
Also, since there are monkey patches for some test cases classes,
there were sometimes both documented and sneaked under the wrong
section in the sidebar.
Finally, for future references, the `active_support/vendor`
folder has been originally ignored in https://git.io/vDqfA but
no longer exists.
[ci skip]
|
|\ \
| | |
| | | |
Delegate to `scope` rather than `merge!` for collection proxy
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Because merging the association scope was removed.
|
| | |
| | |
| | |
| | |
| | | |
`merge! association.scope(nullify: false)` is expensive but most methods
do not need the merge.
|
|\ \ \
| | | |
| | | | |
Update Guides to use macOS instead of Mac OS X [ci skip]
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Remove the top-level `HashWithIndifferentAccess` contant
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This constant was kept for the sake of backward compatibility; it
is still available under `ActiveSupport::HashWithIndifferentAccess`.
Furthermore, since Ruby 2.5 (https://bugs.ruby-lang.org/issues/11547)
won't support top level constant lookup, people would have to update
their code anyway.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Do not run `git init` in dummy application
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Improve `create_table force: true`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Extra `data_source_exists?(table_name)` is unneeded if
`drop_table(table_name, if_exists: true)` directly.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Add assertion to polymorphic_routes_test.rb
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The assertion will ensure that the behavior doesn't regress.
assert_equal "/projects", polymorphic_path("projects")
Remove FIXME related to polymorphic_url behavior.
polymorphic_url with Symbol or String works equally.
Example:
default_url_options[:host] = "example.com"
polymorphic_url(:projects) # => "http://example.com/projects"
polymorphic_url("projects") # => "http://example.com/projects"
Related to 37d4415a7b433fcb987b1c6a5b51bf2d8efc5d5e
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add missing module namespacing wrapper
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
refs: #28011
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Unfreeze interpolated string because it's unnecessary.
|
|/ / / / / |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove deprecate passing string to `:if` and `:unless` conditional options [ci skip]
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
Follow up to #27608
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Change engines guide to demonstrate maintained forum
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Change Rails engine guide to references a maintained project
Thredded instead of the abandoned project Forem. I chose
Thredded as Forem's closing note (below) suggests the choice.
https://github.com/rubysherpas/forem/blob/rails4/README.md
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Remove `:doc:` for `NumericalityValidator` [ci skip]
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The `:doc:` was added in cdb9d7f but `NumericalityValidator` is already
`:nodoc:` class. `:doc:` is unneeded.
https://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations/numericality.rb#L3
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix typo in I18n Guide [ci skip]
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Fix doc in Multibyte::Chars [ci skip]
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Change ActiveModel::Validation to ActiveModel::Validations in comments
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Remove redundant namespaces from sample code of `deprecated_method_wa…
|
| |/ / /
| | | |
| | | |
| | | | |
[ci skip]
|
|\ \ \ \
| | | | |
| | | | | |
Fix a tests of AR::ValueTooLong when using OracleAdapter
|
| | | | | |
|