From 99975e742eb2636cd814f2c9de21f4bd3c3dbbc7 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 7 Dec 2013 16:32:38 -0800 Subject: Variants can be declared without a block to signify their presence in the controller --- actionpack/test/controller/mime/respond_to_test.rb | 2 +- .../test/fixtures/respond_to/variant_plus_none_for_format.html.erb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb (limited to 'actionpack/test') diff --git a/actionpack/test/controller/mime/respond_to_test.rb b/actionpack/test/controller/mime/respond_to_test.rb index cd93043360..c258bbec06 100644 --- a/actionpack/test/controller/mime/respond_to_test.rb +++ b/actionpack/test/controller/mime/respond_to_test.rb @@ -170,7 +170,7 @@ class RespondToController < ActionController::Base respond_to do |format| format.html do |variant| variant.phone { render text: "phone" } - variant.none { render text: "none" } + variant.none end end end diff --git a/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb b/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb new file mode 100644 index 0000000000..c86c3f3551 --- /dev/null +++ b/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb @@ -0,0 +1 @@ +none \ No newline at end of file -- cgit v1.2.3