Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikz/rspec-dom-testing
rails-dom-testing wrapped as RSpec matchers
https://github.com/mikz/rspec-dom-testing
rspec rspec-matchers rspec-rails
Last synced: about 1 month ago
JSON representation
rails-dom-testing wrapped as RSpec matchers
- Host: GitHub
- URL: https://github.com/mikz/rspec-dom-testing
- Owner: mikz
- Created: 2017-02-14T09:47:53.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-14T10:12:19.000Z (almost 8 years ago)
- Last Synced: 2024-04-25T17:05:38.072Z (10 months ago)
- Topics: rspec, rspec-matchers, rspec-rails
- Language: Ruby
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# RSpec::Dom::Testing [![Build Status](https://travis-ci.org/mikz/rspec-dom-testing.svg?branch=master)](https://travis-ci.org/mikz/rspec-dom-testing)
This gem wraps [`rails-dom-testing`](https://github.com/rails/rails-dom-testing) helpers as RSpec Matchers.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'rspec-dom-testing', group: :test
```And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec-dom-testing
## UsageFirst include the matchers into RSpec:
```ruby
RSpec.configure do |config|
config.include RSpec::Dom::Testing::Matchers
end
```Then use them:
```ruby
RSpec.describe 'matchers' do
it { expect('
it { expect('
example
').to have_text(text: 'example') }end
```
For all available options check [rails-dom-testing documentation](http://www.rubydoc.info/gems/rails-dom-testing/Rails/Dom/Testing/Assertions/SelectorAssertions#assert_select-instance_method).
## Development
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/mikz/rspec-dom-testing