-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #862 from woowacourse/release/1.2.0
Release/1.2.0
- Loading branch information
Showing
135 changed files
with
2,485 additions
and
1,528 deletions.
There are no files selected for viewing
9 changes: 0 additions & 9 deletions
9
backend/src/acceptanceTest/java/wooteco/prolog/fixtures/LevelAcceptanceFixture.java
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
backend/src/acceptanceTest/java/wooteco/prolog/fixtures/SessionAcceptanceFixture.java
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package wooteco.prolog.fixtures; | ||
|
||
import wooteco.prolog.session.application.dto.SessionRequest; | ||
|
||
public class SessionAcceptanceFixture { | ||
|
||
public static SessionRequest session1 = new SessionRequest("세션1"); | ||
public static SessionRequest session2 = new SessionRequest("세션2"); | ||
} |
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
backend/src/acceptanceTest/resources/wooteco/prolog/profile.feature
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
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
25 changes: 25 additions & 0 deletions
25
backend/src/acceptanceTest/resources/wooteco/prolog/studylog-create.feature
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@api | ||
Feature: 스터디로그 관련 기능 | ||
|
||
Background: 사전 작업 | ||
Given 세션 여러개를 생성하고 | ||
And 미션 여러개를 생성하고 | ||
And "브라운"이 로그인을 하고 | ||
|
||
Scenario: 스터디로그 작성하기 | ||
When 스터디로그를 작성하면 | ||
Then 스터디로그가 작성된다 | ||
|
||
Scenario: 세션, 미션 없이 스터디로그 작성하기 | ||
When 세션과 미션 없이 스터디로그를 작성하면 | ||
Then 스터디로그가 작성된다 | ||
|
||
Scenario: 스터디로그 세션 수정하기 | ||
Given 스터디로그를 작성하고 | ||
When 스터디로그 세션을 2로 수정하면 | ||
Then 스터디로그 세션이 2로 수정된다 | ||
|
||
Scenario: 스터디로그 미션 수정하기 | ||
Given 스터디로그를 작성하고 | ||
When 스터디로그 미션을 2로 수정하면 | ||
Then 스터디로그 미션이 2로 수정된다 |
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
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
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
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
Oops, something went wrong.