]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/client_applications_test.rb
Merge remote-tracking branch 'upstream/pull/2983' into master
[rails.git] / test / integration / client_applications_test.rb
index b50a990c688a1b5e54960682fa1a9ad7a2c94444..5a00a563108ccca1da7a8fec0393686c52e2399c 100644 (file)
@@ -76,19 +76,17 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest
     # tests, as its too tied into the HTTP headers and stuff that it signs.
   end
 
+  private
+
   ##
   # utility method to make the HTML screening easier to read.
-  def assert_in_heading
-    assert_select "div.content-heading" do
-      yield
-    end
+  def assert_in_heading(&block)
+    assert_select("div.content-heading", &block)
   end
 
   ##
   # utility method to make the HTML screening easier to read.
-  def assert_in_body
-    assert_select "div#content" do
-      yield
-    end
+  def assert_in_body(&block)
+    assert_select("div#content", &block)
   end
 end