Improve CreateContext call. Fixed test

This commit is contained in:
Dmitriy Zaporozhets 2013-01-18 20:21:13 +02:00
parent 232d61d598
commit 6f05ea4f6e
5 changed files with 47 additions and 35 deletions

View file

@ -153,36 +153,6 @@ describe Project do
end
end
describe :create_by_user do
before do
@user = create :user
@opts = {
name: "GitLab"
}
end
context 'user namespace' do
before do
@project = Project.create_by_user(@opts, @user)
end
it { @project.should be_valid }
it { @project.owner.should == @user }
it { @project.namespace.should == @user.namespace }
end
context 'user namespace' do
before do
@group = create :group, owner: @user
@opts.merge!(namespace_id: @group.id)
@project = Project.create_by_user(@opts, @user)
end
it { @project.should be_valid }
it { @project.owner.should == @user }
it { @project.namespace.should == @group }
end
end
describe :find_with_namespace do
context 'with namespace' do