From 615e4968464949a2e62af5c2cde363db67f37882 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 15 Apr 2013 16:29:55 +0300 Subject: [PATCH] change user_spec to pass postgres --- spec/models/user_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 4e276deaabe..380bbe7351f 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -120,7 +120,7 @@ describe User do end 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.owned_groups.should == [@group] } end @@ -155,8 +155,8 @@ describe User do it { User.filter("admins").should == [@admin] } it { User.filter("blocked").should == [@blocked] } - it { User.filter("wop").should == [@user, @admin, @blocked] } - it { User.filter(nil).should == [@user, @admin] } + it { User.filter("wop").should include(@user, @admin, @blocked) } + it { User.filter(nil).should include(@user, @admin) } end describe :not_in_project do @@ -166,7 +166,7 @@ describe User do @project = create :project end - it { User.not_in_project(@project).should == [@user, @project.owner] } + it { User.not_in_project(@project).should include(@user, @project.owner) } end describe 'normal user' do -- GitLab