Chai jQuery Rails
chai-jquery is a plugin for chai that gives you jquery expectation helpers.
This is a simple gem that adds chai-jquery to the rails asset pipline.
Installation
Add this line to your application's Gemfile:
group :development, :test do
gem 'chai-jquery-rails'
end
And then execute:
$ bundle
Then in your test files add a sprocket require statement:
js: //= require chai-jquery
coffeescript: #= require chai-jquery
This gem also depends on chai which in turn depends on mocha. The best way to get those is with the konacha gem.
Kudos
- chai-jquery for doing the hard work.
- Derek Prior for blogging about how to write a gem that includes rails assets.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request