Fix project models specs
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
58eca3118a
commit
7db71b9476
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ describe Project do
|
|||
|
||||
it "should not allow new projects beyond user limits" do
|
||||
project2 = build(:project)
|
||||
project2.stub(:creator).and_return(double(can_create_project?: false, projects_limit: 0))
|
||||
project2.stub(:creator).and_return(double(can_create_project?: false, projects_limit: 0).as_null_object)
|
||||
project2.should_not be_valid
|
||||
project2.errors[:limit_reached].first.should match(/Your own projects limit is 0/)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue