LiquidStream::Matchers
Add should-style matchers to test your liquid streams.
Installation
Add this line to your application's Gemfile:
gem 'liquid_stream-matchers'
And then execute:
$ bundle
Or install it yourself as:
$ gem install liquid_stream-matchers
Usage
Add this to your spec_helper.rb
:
require "liquid_stream/matchers"
Then use it:
class BlogStream
stream :posts
stream :popular_posts, as: PopularPosts
end
describe BlogStream
it { should stream(:posts) }
it { should stream(:posts).as(PopularPosts) }
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request