Socket
Book a DemoInstallSign in
Socket

technicalpickles-nice_assert_select

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

technicalpickles-nice_assert_select

bundlerRubygems
Version
0.1.1
Version published
Maintainers
1
Created
Source

= nice_assert_select

Tired of ugly assert_select calls?

assert_select "form[action=?][method=post]", sources_path do assert_select "input[type=text][name=?]", 'source[name]' assert_select "input[type=hidden][name=_method][value=put]" assert_select "input[type=submit]" end

How about some nice assert_selects?

assert_select form(:action => :post, :action => sources_path) do assert_select text_field(:name => 'source[name]') assert_select form_method_field(:put) assert_select submit_button end

nice_assert_select provides helpers for making the calls more rubyish and more readable. Currently, they are mostly limited to form related selectors that do attribute matching.

form text_field hidden_field password_field form_method_field (this is the hidden field Rails uses for determing what HTTP method to use, since browsers are generally limited to GET and POST) submit_button

It is by no means comprehensive, as it was extracted from a project which only needed these assert_selects.

== Installing

For Rails 2.1 and on, add this to your config/environment.rb:

config.gem 'technicalpickles-nice_assert_select', :lib => 'nice_assert_select', :source => 'http://gems.github.com'

== COPYRIGHT

Copyright (c) 2009 Josh Nichols. See LICENSE for details.

FAQs

Package last updated on 10 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts