diff --git a/lib/rails/dom/testing/assertions/selector_assertions.rb b/lib/rails/dom/testing/assertions/selector_assertions.rb index 18602d0..94dcd7f 100644 --- a/lib/rails/dom/testing/assertions/selector_assertions.rb +++ b/lib/rails/dom/testing/assertions/selector_assertions.rb @@ -100,10 +100,10 @@ def css_select(*args) # Substitution uses a custom pseudo class match. Pass in whatever attribute you want to match (enclosed in quotes) and a ? for the substitution. # assert_dom returns nil if called with an invalid css selector. # - # assert_dom "div:match('id', ?)", "id_string" - # assert_dom "div:match('id', ?)", :id_string - # assert_dom "div:match('id', ?)", 1 - # assert_dom "div:match('id', ?)", /\d+/ + # assert_dom "div:match('id', ?)", "id_string" + # assert_dom "div:match('id', ?)", :id_string + # assert_dom "div:match('id', ?)", 1 + # assert_dom "div:match('id', ?)", /\d+/ # # === Equality Tests #