Simple RSpec matchers for your Virtus objects
Add this line to your application's Gemfile:
gem 'rspec-virtus'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec-virtus
Here is a sample Virtus object
class Post
include Virtus
attribute :title, String
attribute :body, String
attribute :comments, Array[String]
end
And with rspec-virtus
we can now make simple assertions about these models
require 'spec_helper'
describe Post
describe 'attributes' do
it "has an attribute" do
expect(described_class).to have_attribute(:title)
end
it "has an attribute with a type check" do
expect(described_class).to have_attribute(:body).of_type(String)
end
it "has an array attribute with a type check" do
expect(described_class).to have_attribute(:comments).of_type(Array, member_type: String)
end
end
end
- 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