提交 615e4968 编写于 作者: D Dmitriy Zaporozhets

change user_spec to pass postgres

上级 c7b825fe
...@@ -120,7 +120,7 @@ describe User do ...@@ -120,7 +120,7 @@ describe User do
end end
it { @user.several_namespaces?.should be_true } it { @user.several_namespaces?.should be_true }
it { @user.namespaces.should == [@user.namespace, @group] } it { @user.namespaces.should include(@user.namespace, @group) }
it { @user.authorized_groups.should == [@group] } it { @user.authorized_groups.should == [@group] }
it { @user.owned_groups.should == [@group] } it { @user.owned_groups.should == [@group] }
end end
...@@ -155,8 +155,8 @@ describe User do ...@@ -155,8 +155,8 @@ describe User do
it { User.filter("admins").should == [@admin] } it { User.filter("admins").should == [@admin] }
it { User.filter("blocked").should == [@blocked] } it { User.filter("blocked").should == [@blocked] }
it { User.filter("wop").should == [@user, @admin, @blocked] } it { User.filter("wop").should include(@user, @admin, @blocked) }
it { User.filter(nil).should == [@user, @admin] } it { User.filter(nil).should include(@user, @admin) }
end end
describe :not_in_project do describe :not_in_project do
...@@ -166,7 +166,7 @@ describe User do ...@@ -166,7 +166,7 @@ describe User do
@project = create :project @project = create :project
end end
it { User.not_in_project(@project).should == [@user, @project.owner] } it { User.not_in_project(@project).should include(@user, @project.owner) }
end end
describe 'normal user' do describe 'normal user' do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册