You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe Post do
context 'validations' do
subject { FactoryGirl.build(:post) }
it do
should validate_uniqueness_of(:slug).
scoped_to(:user_id).
with_message('duplicate slug within same user_id').
case_insensitive
end
end
end
is supported by shoulda-matchers / Active Record .
Although some of the shoulda-matchers can be used with ActiveNode, the previous one cannot.
Is this something that neo4j-rspec can tackle?
The text was updated successfully, but these errors were encountered:
I imagine so, though I don't know if the gem stores state in such a way that neo4j-rspec could determine this or not. Let me know if something in the gem needs to change to help make this happen
The following syntax
is supported by shoulda-matchers / Active Record .
Although some of the shoulda-matchers can be used with ActiveNode, the previous one cannot.
Is this something that neo4j-rspec can tackle?
The text was updated successfully, but these errors were encountered: