-
-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
consistently refer to feature as "project for user" per documentation @
- Loading branch information
Dan Lee
committed
Apr 17, 2013
1 parent
13457a4
commit 53d7a8a
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,11 +50,11 @@ | |
end | ||
end | ||
|
||
describe ".create_project with owner" do | ||
describe ".create_project for user" do | ||
before do | ||
stub_post("/users", "user") | ||
@owner = Gitlab.create_user("[email protected]", "pass", {name: 'John Owner'}) | ||
stub_post("/projects/user/#{@owner.id}", "project_with_owner") | ||
stub_post("/projects/user/#{@owner.id}", "project_for_user") | ||
@project = Gitlab.create_project('Brute', {:user_id => @owner.id}) | ||
end | ||
|
||
|