diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2015-12-15 16:45:57 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2015-12-15 16:46:02 -0300 |
commit | f8edd2043e864aff0bde9289da550709532268a6 (patch) | |
tree | de1f0f70d9be602c1dbe1756f07b940bb647b6bb /railties/test | |
parent | 8391007b7ca123d26ec9b8581b56d6243c3cb908 (diff) | |
download | rails-f8edd2043e864aff0bde9289da550709532268a6.tar.gz rails-f8edd2043e864aff0bde9289da550709532268a6.tar.bz2 rails-f8edd2043e864aff0bde9289da550709532268a6.zip |
Do not default to any Serializer
We will wait until 5.1 to make a decision
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/api_app_generator_test.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/test/generators/api_app_generator_test.rb b/railties/test/generators/api_app_generator_test.rb index be2cd3a853..2c24a6e46a 100644 --- a/railties/test/generators/api_app_generator_test.rb +++ b/railties/test/generators/api_app_generator_test.rb @@ -37,9 +37,8 @@ class ApiAppGeneratorTest < Rails::Generators::TestCase assert_no_match(/gem 'coffee-rails'/, content) assert_no_match(/gem 'jquery-rails'/, content) assert_no_match(/gem 'sass-rails'/, content) - assert_no_match(/gem 'jbuilder'/, content) assert_no_match(/gem 'web-console'/, content) - assert_match(/gem 'active_model_serializers'/, content) + assert_match(/# gem 'jbuilder'/, content) end assert_file "config/application.rb" do |content| |