mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
11 lines
241 B
Ruby
11 lines
241 B
Ruby
require 'spec_helper'
|
|
|
|
describe Block do
|
|
describe 'validations' do
|
|
it 'doesnt allow you to block yourself' do
|
|
block = alice.blocks.create(:person => alice.person)
|
|
|
|
block.should have(1).error_on(:person_id)
|
|
end
|
|
end
|
|
end |