0.02
Low commit activity in last 3 years
No release in over a year
Provides a set of useful rspec matchers to be used with RSpec and/or Capybara
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Elabs matchers

Build Status

Elabs matchers aims to extend existing rspec matchers from e.g Rspec, Rspec-rails and Capybara with a set of less generic once. This could be things like asserting a table appearing in a certain way or check that an active record instance has been successfully persisted after an update.

It is important to know that this gem aims to extend rspec / capybara with more matchers. If functionality in either of theses makes any of elabs matchers' matchers obsolete they will be deprecated and removed from elabs matchers.

Below follows a list of matchers that the gem bundles. To get documentation about each matcher the source code is your best friend at this point.

Setup

add elabs_matchers to your Gemfile:

gem "elabs_matchers"

Model matchers:

record.should be_valid_with("Blog post").as(:title)
hash.contain_hash({ "baz" => "bar" })
record.should persist(:title, "Blog post")

Model helpers:

reload(post)
save_and_reload(post)

Acceptance matchers:

page.should have_flash_notice("Success")
page.should have_flash_alert("Error")
page.should have_form_errors_on("Name", "Can't be blank")
page.should have_header("Elabs")
page.should have_image("Logo")
page.should have_fields("Author" => "Adam", "Year" => "2011")
page.should have_table_row("Posts", "Title" => "First", :year => "2012") # Moved to https://github.com/jnicklas/capybara_table
page.should have_attribute("Status", "Pending")

Acceptance helpers:

select_year_and_month("2010", "March", :from => "Birth date")

Common helpers:

normalize_keys({ "First name" => "Adam" })
fixture_file("file.txt")

Configuration

Matchers can be configured in e.g your spec_helper.rb-file:

ElabsMatchers.configure do |config|
  config.header_selector = "//h1"
  config.header_selector_type = :xpath
  config.image_selector = lambda { |src| "img[src='#{src}']" }
end

See elabs_matchers.rb

More

The gem includes YARD documentation which can be read with any browser. The gem's test suite should also serve as detailed documentation for each matcher and helper.

Development

See development.md

Contributors

So far the code base is a joined effort by everyone at Elabs.

License:

(The MIT License)

Copyright (c) 2012 Elabs AB

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.